Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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_UI_WEBUI_SNIPPETS_INTERNALS_MESSAGE_HANDLER_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_SNIPPETS_INTERNALS_MESSAGE_HANDLER_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "base/memory/scoped_ptr.h" | |
|
Marc Treib
2016/04/13 08:45:51
We can use std::unique_ptr now (from <memory>)! Bu
jkrcal
2016/04/14 15:27:00
Done.
| |
| 12 #include "base/memory/weak_ptr.h" | |
| 13 #include "components/ntp_snippets/ntp_snippets_service.h" | |
| 14 #include "content/public/browser/web_ui_message_handler.h" | |
| 15 | |
| 16 namespace base { | |
| 17 class ListValue; | |
| 18 } // namespace base | |
| 19 | |
| 20 // The implementation for the chrome://zine-internals page. | |
|
Marc Treib
2016/04/13 08:45:51
snippets-internals
jkrcal
2016/04/14 15:27:00
Done.
| |
| 21 class SnippetsInternalsMessageHandler | |
| 22 : public content::WebUIMessageHandler, | |
| 23 public ntp_snippets::NTPSnippetsServiceObserver { | |
| 24 public: | |
| 25 SnippetsInternalsMessageHandler(); | |
| 26 ~SnippetsInternalsMessageHandler() override; | |
| 27 | |
| 28 // Send everytime the service loads a new set of data. | |
| 29 void NTPSnippetsServiceLoaded() override; | |
| 30 // Send when the service is shutting down. | |
| 31 void NTPSnippetsServiceShutdown() override; | |
|
Marc Treib
2016/04/13 08:45:51
These two can be private. It's common practice to
jkrcal
2016/04/14 15:27:00
Done.
| |
| 32 | |
| 33 private: | |
| 34 // content::WebUIMessageHandler: | |
| 35 void RegisterMessages() override; | |
| 36 | |
| 37 void HandleLoaded(const base::ListValue* args); | |
| 38 void HandleClear(const base::ListValue* args); | |
| 39 void HandleClearDiscarded(const base::ListValue* args); | |
| 40 void HandleDownload(const base::ListValue* args); | |
| 41 | |
| 42 void SendInitialData(ntp_snippets::NTPSnippetsService* service); | |
| 43 void SendSnippets(ntp_snippets::NTPSnippetsService* service); | |
| 44 void SendDiscardedSnippets(ntp_snippets::NTPSnippetsService* service); | |
| 45 void SendHosts(ntp_snippets::NTPSnippetsService* service); | |
| 46 void SendJson(const std::string& json); | |
| 47 void SendBoolean(const std::string& name, bool value); | |
| 48 void SendString(const std::string& name, const std::string& value); | |
| 49 | |
| 50 DISALLOW_COPY_AND_ASSIGN(SnippetsInternalsMessageHandler); | |
| 51 }; | |
| 52 | |
| 53 #endif // CHROME_BROWSER_UI_WEBUI_SNIPPETS_INTERNALS_MESSAGE_HANDLER_H_ | |
| OLD | NEW |