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 COMPONENTS_FAVICON_BASE_FAVICON_USAGE_DATA_H_
6 #define COMPONENTS_FAVICON_BASE_FAVICON_USAGE_DATA_H_
13 namespace favicon_base
{
15 // Used to correlate favicons to imported bookmarks.
16 struct FaviconUsageData
{
20 // The URL of the favicon.
23 // The raw png-encoded data.
24 std::vector
<unsigned char> png_data
;
26 // The list of URLs using this favicon.
30 typedef std::vector
<FaviconUsageData
> FaviconUsageDataList
;
32 } // namespace favicon_base
34 #endif // COMPONENTS_FAVICON_BASE_FAVICON_USAGE_DATA_H_