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

Unified Diff: chrome/browser/ui/webui/new_profile_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/net_internals_ui.h ('k') | chrome/browser/ui/webui/ntp/app_launcher_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/new_profile_handler.h
===================================================================
--- chrome/browser/ui/webui/new_profile_handler.h (revision 92173)
+++ chrome/browser/ui/webui/new_profile_handler.h (working copy)
@@ -10,6 +10,10 @@
class RefCountedMemory;
+namespace base {
+class ListValue;
+}
+
// The handler for Javascript messages related to the "new profile" page.
class NewProfileHandler : public WebUIMessageHandler {
public:
@@ -19,13 +23,13 @@
virtual void RegisterMessages();
// Callback for the "create" message - finishes creating a profile.
- void HandleCreate(const ListValue* args);
+ void HandleCreate(const base::ListValue* args);
// Callback for the "cancel" message - cancels creating a profile.
- void HandleCancel(const ListValue* args);
+ void HandleCancel(const base::ListValue* args);
// Callback for the "requestProfileInfo" message - sends profile info.
- void HandleRequestProfileInfo(const ListValue* args);
+ void HandleRequestProfileInfo(const base::ListValue* args);
private:
// Send the default avatar images to the page.
« no previous file with comments | « chrome/browser/ui/webui/net_internals_ui.h ('k') | chrome/browser/ui/webui/ntp/app_launcher_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698