OLD | NEW |
---|---|
(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_ | |
OLD | NEW |