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

Side by Side Diff: chrome/browser/history/top_sites_observer.h

Issue 441623002: Eliminate sending NOTIFICATION_TOP_SITES_* from TopSites (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698