| Index: chrome/browser/favicon/imported_favicon_usage.h
|
| diff --git a/chrome/browser/favicon/imported_favicon_usage.h b/chrome/browser/favicon/imported_favicon_usage.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ec7957d25fb89419fdd565f168fff9ae997b8d2c
|
| --- /dev/null
|
| +++ b/chrome/browser/favicon/imported_favicon_usage.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2013 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 CHROME_BROWSER_FAVICON_IMPORTED_FAVICON_USAGE_H_
|
| +#define CHROME_BROWSER_FAVICON_IMPORTED_FAVICON_USAGE_H_
|
| +
|
| +#include <set>
|
| +#include <vector>
|
| +
|
| +#include "googleurl/src/gurl.h"
|
| +
|
| +// Used to correlate favicons to imported bookmarks.
|
| +struct ImportedFaviconUsage {
|
| + ImportedFaviconUsage();
|
| + ~ImportedFaviconUsage();
|
| +
|
| + // The URL of the favicon.
|
| + GURL favicon_url;
|
| +
|
| + // The raw png-encoded data.
|
| + std::vector<unsigned char> png_data;
|
| +
|
| + // The list of URLs using this favicon.
|
| + std::set<GURL> urls;
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_FAVICON_IMPORTED_FAVICON_USAGE_H_
|
|
|