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

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

Issue 15275004: bookmarks: Get rid of the dependency on history_notifications.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more android fixes 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_FAVICON_CHANGED_DETAILS_H_
6 #define CHROME_BROWSER_FAVICON_FAVICON_CHANGED_DETAILS_H_
7
8 #include <set>
9
10 #include "googleurl/src/gurl.h"
11
12 namespace chrome {
13
14 // Details for chrome::NOTIFICATION_FAVICON_CHANGED.
15 struct FaviconChangedDetails {
sky 2013/05/20 14:48:13 It seems as though favicons is always going to hav
tfarina 2013/05/20 23:10:30 Yeah, I thought about this. I was not sure if incl
16 FaviconChangedDetails();
17 ~FaviconChangedDetails();
18
19 std::set<GURL> urls;
20 };
21
22 } // namespace chrome
23
24 #endif // CHROME_BROWSER_FAVICON_FAVICON_CHANGED_DETAILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698