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

Unified Diff: chrome/browser/ui/webui/ntp/app_launcher_handler.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months 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
« no previous file with comments | « chrome/browser/ui/webui/new_profile_handler.h ('k') | chrome/browser/ui/webui/ntp/favicon_webui_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « chrome/browser/ui/webui/new_profile_handler.h ('k') | chrome/browser/ui/webui/ntp/favicon_webui_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698