summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/ntp/app_launcher_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/webui/ntp/app_launcher_handler.h')
-rw-r--r--chrome/browser/ui/webui/ntp/app_launcher_handler.h22
1 files changed, 19 insertions, 3 deletions
diff --git a/chrome/browser/ui/webui/ntp/app_launcher_handler.h b/chrome/browser/ui/webui/ntp/app_launcher_handler.h
index d95e43d..ff958fc 100644
--- a/chrome/browser/ui/webui/ntp/app_launcher_handler.h
+++ b/chrome/browser/ui/webui/ntp/app_launcher_handler.h
@@ -33,6 +33,10 @@ namespace favicon_base {
struct FaviconImageResult;
}
+namespace user_prefs {
+class PrefRegistrySyncable;
+}
+
// The handler for Javascript messages related to the "apps" view.
class AppLauncherHandler
: public content::WebUIMessageHandler,
@@ -50,6 +54,13 @@ class AppLauncherHandler
ExtensionService* service,
base::DictionaryValue* value);
+ // Registers values (strings etc.) for the page.
+ static void GetLocalizedValues(Profile* profile,
+ base::DictionaryValue* values);
+
+ // Register per-profile preferences.
+ static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
+
// WebUIMessageHandler:
void RegisterMessages() override;
@@ -120,9 +131,14 @@ class AppLauncherHandler
// page_index].
void HandleGenerateAppForLink(const base::ListValue* args);
- // Other registered message callbacks with unused |args|.
- void StopShowingAppLauncherPromo(const base::ListValue* args);
- void OnLearnMore(const base::ListValue* args);
+ // Handles "stopShowingAppLauncherPromo" message with unused |args|.
+ void HandleStopShowingAppLauncherPromo(const base::ListValue* args);
+
+ // Handles "learnMore" message with unused |args|.
+ void HandleOnLearnMore(const base::ListValue* args);
+
+ // Handles "pageSelected" message with |args| containing [page_index].
+ void HandlePageSelected(const base::ListValue* args);
private:
struct AppInstallInfo {