Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Side by Side Diff: components/favicon/content/favicon_url_util.h

Issue 1020213002: Componentize conversion of content::FaviconURL to favicon::FaviconURL (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@browser
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/favicon/content/DEPS ('k') | components/favicon/content/favicon_url_util.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #ifndef COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
6 #define COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
7
8 #include <vector>
9
10 namespace content {
11 struct FaviconURL;
12 }
13
14 namespace favicon {
15
16 struct FaviconURL;
17
18 // Creates a favicon::FaviconURL from a content::FaviconURL.
19 FaviconURL FaviconURLFromContentFaviconURL(
20 const content::FaviconURL& favicon_url);
21
22 // Creates favicon::FaviconURLs from content::FaviconURLs.
23 std::vector<FaviconURL> FaviconURLsFromContentFaviconURLs(
24 const std::vector<content::FaviconURL>& favicon_urls);
25
26 } // namespace favicon
27
28 #endif // COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
OLDNEW
« no previous file with comments | « components/favicon/content/DEPS ('k') | components/favicon/content/favicon_url_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698