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

Unified Diff: chrome/browser/ui/webui/chromeos/login/network_screen_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
Index: chrome/browser/ui/webui/chromeos/login/network_screen_handler.h
===================================================================
--- chrome/browser/ui/webui/chromeos/login/network_screen_handler.h (revision 92173)
+++ chrome/browser/ui/webui/chromeos/login/network_screen_handler.h (working copy)
@@ -11,7 +11,9 @@
#include "content/browser/webui/web_ui.h"
#include "ui/gfx/point.h"
+namespace base {
class ListValue;
+}
namespace views {
class Widget;
@@ -39,7 +41,7 @@
virtual void EnableContinue(bool enabled);
// OobeMessageHandler implementation:
- virtual void GetLocalizedStrings(DictionaryValue* localized_strings);
+ virtual void GetLocalizedStrings(base::DictionaryValue* localized_strings);
virtual void Initialize();
// WebUIMessageHandler implementation:
@@ -47,24 +49,24 @@
private:
// Handles change of the network control position.
- void HandleNetworkControlPosition(const ListValue* args);
+ void HandleNetworkControlPosition(const base::ListValue* args);
// Handles moving off the screen.
- void HandleOnExit(const ListValue* args);
+ void HandleOnExit(const base::ListValue* args);
// Handles change of the language.
- void HandleOnLanguageChanged(const ListValue* args);
+ void HandleOnLanguageChanged(const base::ListValue* args);
// Handles change of the input method.
- void HandleOnInputMethodChanged(const ListValue* args);
+ void HandleOnInputMethodChanged(const base::ListValue* args);
// Returns available languages. Caller gets the ownership. Note, it does
// depend on the current locale.
- static ListValue* GetLanguageList();
+ static base::ListValue* GetLanguageList();
// Returns available input methods. Caller gets the ownership. Note, it does
// depend on the current locale.
- static ListValue* GetInputMethods();
+ static base::ListValue* GetInputMethods();
// Creates network window or updates it's bounds.
void CreateOrUpdateNetworkWindow();
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/login_ui_helpers.h ('k') | chrome/browser/ui/webui/chromeos/login/oobe_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698