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

Unified Diff: components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h

Issue 2570783003: [Popular Sites] Split PopularSites interface and PopularSitesImpl (Closed)
Patch Set: Split PopularSitesImpl. Created 4 years 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 side-by-side diff with in-line comments
Download patch
Index: components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h
diff --git a/components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h b/components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h
index 45797e24069728cfda8eda8d5e9232bdf4bbb321..4cdcd938306a84988cc607543478dadfbf3cdd98 100644
--- a/components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h
+++ b/components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h
@@ -22,7 +22,7 @@ class SequencedWorkerPool;
namespace ntp_tiles {
-class PopularSites;
+class PopularSitesImpl;
// Implemented by embedders to hook up PopularSitesInternalsMessageHandler.
class PopularSitesInternalsMessageHandlerClient {
@@ -33,8 +33,8 @@ class PopularSitesInternalsMessageHandlerClient {
// Returns the PrefService for the embedder and containing WebUI page.
virtual PrefService* GetPrefs() = 0;
- // Creates a new PopularSites based on the context pf the WebUI page.
- virtual std::unique_ptr<ntp_tiles::PopularSites> MakePopularSites() = 0;
+ // Creates a new PopularSitesImpl based on the context pf the WebUI page.
+ virtual std::unique_ptr<ntp_tiles::PopularSitesImpl> MakePopularSites() = 0;
// Registers a callback in Javascript. See content::WebUI and web::WebUIIOS.
virtual void RegisterMessageCallback(

Powered by Google App Engine
This is Rietveld 408576698