Index: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h |
=================================================================== |
--- chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h (revision 92173) |
+++ chrome/browser/ui/webui/chromeos/login/signin_screen_handler.h (working copy) |
@@ -10,7 +10,10 @@ |
#include "chrome/browser/ui/webui/chromeos/login/oobe_ui.h" |
#include "content/browser/webui/web_ui.h" |
+namespace base { |
+class DictionaryValue; |
class ListValue; |
+} |
namespace chromeos { |
@@ -25,7 +28,8 @@ |
private: |
// OobeMessageHandler implementation: |
- virtual void GetLocalizedStrings(DictionaryValue* localized_strings) OVERRIDE; |
+ virtual void GetLocalizedStrings( |
+ base::DictionaryValue* localized_strings) OVERRIDE; |
virtual void Initialize() OVERRIDE; |
// WebUIMessageHandler implementation: |
@@ -38,7 +42,7 @@ |
HelpAppLauncher::HelpTopic help_topic_id) OVERRIDE; |
// Handles authenticate user request from javascript. |
- void HandleAuthenticateUser(const ListValue* args); |
+ void HandleAuthenticateUser(const base::ListValue* args); |
// A delegate that glues this handler with backend LoginDisplay. |
LoginUIHandlerDelegate* delegate_; |