1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
6 #define COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
18 // Creates a favicon::FaviconURL from a content::FaviconURL.
19 FaviconURL
FaviconURLFromContentFaviconURL(
20 const content::FaviconURL
& favicon_url
);
22 // Creates favicon::FaviconURLs from content::FaviconURLs.
23 std::vector
<FaviconURL
> FaviconURLsFromContentFaviconURLs(
24 const std::vector
<content::FaviconURL
>& favicon_urls
);
26 } // namespace favicon
28 #endif // COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_