diff options
Diffstat (limited to 'chrome/browser/ui/webui/new_profile_handler.h')
-rw-r--r-- | chrome/browser/ui/webui/new_profile_handler.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/chrome/browser/ui/webui/new_profile_handler.h b/chrome/browser/ui/webui/new_profile_handler.h index 1a69950..f4518c0 100644 --- a/chrome/browser/ui/webui/new_profile_handler.h +++ b/chrome/browser/ui/webui/new_profile_handler.h @@ -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 @@ class NewProfileHandler : public WebUIMessageHandler { 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. |