| Index: components/favicon/content/favicon_url_util.h
|
| diff --git a/components/favicon/content/favicon_url_util.h b/components/favicon/content/favicon_url_util.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ba289d854498080c4b3b7ec708b9b9296218edd2
|
| --- /dev/null
|
| +++ b/components/favicon/content/favicon_url_util.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
|
| +#define COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
|
| +
|
| +#include <vector>
|
| +
|
| +namespace content {
|
| +struct FaviconURL;
|
| +}
|
| +
|
| +namespace favicon {
|
| +
|
| +struct FaviconURL;
|
| +
|
| +// Creates a favicon::FaviconURL from a content::FaviconURL.
|
| +FaviconURL FaviconURLFromContentFaviconURL(
|
| + const content::FaviconURL& favicon_url);
|
| +
|
| +// Creates favicon::FaviconURLs from content::FaviconURLs.
|
| +std::vector<FaviconURL> FaviconURLsFromContentFaviconURLs(
|
| + const std::vector<content::FaviconURL>& favicon_urls);
|
| +
|
| +} // namespace favicon
|
| +
|
| +#endif // COMPONENTS_FAVICON_CONTENT_FAVICON_URL_UTIL_H_
|
|
|