| OLD | NEW |
| (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_ |
| OLD | NEW |