1 // Copyright 2013 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 CHROME_COMMON_IMPORTER_IMPORTED_FAVICON_USAGE_H_
6 #define CHROME_COMMON_IMPORTER_IMPORTED_FAVICON_USAGE_H_
13 // Used to correlate favicons to imported bookmarks.
14 struct ImportedFaviconUsage
{
15 ImportedFaviconUsage();
16 ~ImportedFaviconUsage();
18 // The URL of the favicon.
21 // The raw png-encoded data.
22 std::vector
<unsigned char> png_data
;
24 // The list of URLs using this favicon.
28 #endif // CHROME_COMMON_IMPORTER_IMPORTED_FAVICON_USAGE_H_