| Index: chrome/browser/ui/webui/ntp/app_launcher_handler.h
|
| ===================================================================
|
| --- chrome/browser/ui/webui/ntp/app_launcher_handler.h (revision 92173)
|
| +++ chrome/browser/ui/webui/ntp/app_launcher_handler.h (working copy)
|
| @@ -41,7 +41,7 @@
|
| static void CreateAppInfo(const Extension* extension,
|
| const AppNotification* notification,
|
| ExtensionService* service,
|
| - DictionaryValue* value);
|
| + base::DictionaryValue* value);
|
|
|
| // Callback for pings related to launching apps on the NTP.
|
| static bool HandlePing(Profile* profile, const std::string& path);
|
| @@ -56,45 +56,45 @@
|
| const NotificationDetails& details);
|
|
|
| // Populate the given dictionary with all installed app info.
|
| - void FillAppDictionary(DictionaryValue* value);
|
| + void FillAppDictionary(base::DictionaryValue* value);
|
|
|
| // Create a dictionary value for the given extension. May return NULL, e.g. if
|
| // the given extension is not an app. If non-NULL, the caller assumes
|
| // ownership of the pointer.
|
| - DictionaryValue* GetAppInfo(const Extension* extension);
|
| + base::DictionaryValue* GetAppInfo(const Extension* extension);
|
|
|
| // Populate the given dictionary with the web store promo content.
|
| - void FillPromoDictionary(DictionaryValue* value);
|
| + void FillPromoDictionary(base::DictionaryValue* value);
|
|
|
| // Callback for the "getApps" message.
|
| - void HandleGetApps(const ListValue* args);
|
| + void HandleGetApps(const base::ListValue* args);
|
|
|
| // Callback for the "launchApp" message.
|
| - void HandleLaunchApp(const ListValue* args);
|
| + void HandleLaunchApp(const base::ListValue* args);
|
|
|
| // Callback for the "setLaunchType" message.
|
| - void HandleSetLaunchType(const ListValue* args);
|
| + void HandleSetLaunchType(const base::ListValue* args);
|
|
|
| // Callback for the "uninstallApp" message.
|
| - void HandleUninstallApp(const ListValue* args);
|
| + void HandleUninstallApp(const base::ListValue* args);
|
|
|
| // Callback for the "hideAppPromo" message.
|
| - void HandleHideAppsPromo(const ListValue* args);
|
| + void HandleHideAppsPromo(const base::ListValue* args);
|
|
|
| // Callback for the "createAppShortcut" message.
|
| - void HandleCreateAppShortcut(const ListValue* args);
|
| + void HandleCreateAppShortcut(const base::ListValue* args);
|
|
|
| // Callback for the "reorderApps" message.
|
| - void HandleReorderApps(const ListValue* args);
|
| + void HandleReorderApps(const base::ListValue* args);
|
|
|
| // Callback for the "setPageIndex" message.
|
| - void HandleSetPageIndex(const ListValue* args);
|
| + void HandleSetPageIndex(const base::ListValue* args);
|
|
|
| // Callback for the "promoSeen" message.
|
| - void HandlePromoSeen(const ListValue* args);
|
| + void HandlePromoSeen(const base::ListValue* args);
|
|
|
| // Callback for the "saveAppPageName" message.
|
| - void HandleSaveAppPageName(const ListValue* args);
|
| + void HandleSaveAppPageName(const base::ListValue* args);
|
|
|
| // Register app launcher preferences.
|
| static void RegisterUserPrefs(PrefService* pref_service);
|
|
|