Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 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_HISTORY_TOP_SITES_OBSERVER_H_ | |
| 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_OBSERVER_H_ | |
| 7 | |
| 8 namespace history { | |
| 9 class TopSites; | |
| 10 } | |
| 11 | |
| 12 // Interface for TopSitesLoaded and TopSitesChanged | |
|
sdefresne
2014/08/04 08:47:19
Please re-word this description. Maybe something a
nshaik
2014/08/05 06:38:04
Done.
| |
| 13 class TopSitesObserver { | |
|
sdefresne
2014/08/04 08:47:19
Please put the TopSitesObserver type into the hist
nshaik
2014/08/05 06:38:04
Done.
| |
| 14 public: | |
| 15 virtual void TopSitesLoaded(history::TopSites* top_sites) = 0; | |
|
sdefresne
2014/08/04 08:47:19
Please document (you can take inspiration from the
nshaik
2014/08/05 06:38:04
Done.
| |
| 16 virtual void TopSitesChanged(history::TopSites* top_sites) = 0; | |
|
sdefresne
2014/08/04 08:47:19
Please document (you can take inspiration from the
nshaik
2014/08/05 06:38:04
Done.
| |
| 17 }; | |
| 18 | |
| 19 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_OBSERVER_H_ | |
| OLD | NEW |