Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Side by Side Diff: chrome/browser/favicon/imported_favicon_usage.h

Issue 14575004: Extract BookmarksFileImporter from Firefox2Importer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test cleanup Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_FAVICON_IMPORTED_FAVICON_USAGE_H_
6 #define CHROME_BROWSER_FAVICON_IMPORTED_FAVICON_USAGE_H_
7
8 #include <set>
9 #include <vector>
10
11 #include "googleurl/src/gurl.h"
12
13 // Used to correlate favicons to imported bookmarks.
14 struct ImportedFaviconUsage {
15 ImportedFaviconUsage();
16 ~ImportedFaviconUsage();
17
18 // The URL of the favicon.
19 GURL favicon_url;
20
21 // The raw png-encoded data.
22 std::vector<unsigned char> png_data;
23
24 // The list of URLs using this favicon.
25 std::set<GURL> urls;
26 };
27
28 #endif // CHROME_BROWSER_FAVICON_IMPORTED_FAVICON_USAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698