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

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

Issue 2457033003: Add chrome://popular-sites-internals/ to iOS. (Closed)
Patch Set: Break out ...Client. Created 4 years, 1 month 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
new file mode 100644
index 0000000000000000000000000000000000000000..45797e24069728cfda8eda8d5e9232bdf4bbb321
--- /dev/null
+++ b/components/ntp_tiles/webui/popular_sites_internals_message_handler_client.h
@@ -0,0 +1,65 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef COMPONENTS_NTP_TILES_WEBUI_POPULAR_SITES_HANDLER_CLIENT_H_
+#define COMPONENTS_NTP_TILES_WEBUI_POPULAR_SITES_HANDLER_CLIENT_H_
+
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "base/callback_forward.h"
+#include "base/macros.h"
+
+class PrefService;
+
+namespace base {
+class Value;
+class ListValue;
+class SequencedWorkerPool;
+} // namespace base
+
+namespace ntp_tiles {
+
+class PopularSites;
+
+// Implemented by embedders to hook up PopularSitesInternalsMessageHandler.
+class PopularSitesInternalsMessageHandlerClient {
+ public:
+ // Returns the blocking pool for hte embedder.
+ virtual base::SequencedWorkerPool* GetBlockingPool() = 0;
+
+ // 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;
+
+ // Registers a callback in Javascript. See content::WebUI and web::WebUIIOS.
+ virtual void RegisterMessageCallback(
+ const std::string& message,
+ const base::Callback<void(const base::ListValue*)>& callback) = 0;
+
+ // Invokes a function in Javascript. See content::WebUI and web::WebUIIOS.
+ virtual void CallJavascriptFunctionVector(
+ const std::string& name,
+ const std::vector<const base::Value*>& values) = 0;
+
+ // Helper function for CallJavascriptFunctionVector().
+ template <typename... Arg>
+ void CallJavascriptFunction(const std::string& name, const Arg&... arg) {
+ CallJavascriptFunctionVector(name, {&arg...});
+ }
+
+ protected:
+ PopularSitesInternalsMessageHandlerClient();
+ virtual ~PopularSitesInternalsMessageHandlerClient();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PopularSitesInternalsMessageHandlerClient);
+};
+
+} // namespace ntp_tiles
+
+#endif // COMPONENTS_NTP_TILES_WEBUI_POPULAR_SITES_HANDLER_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698