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

Unified Diff: chrome/browser/ui/webui/options/chromeos/accounts_options_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/options/chromeos/accounts_options_handler.h
===================================================================
--- chrome/browser/ui/webui/options/chromeos/accounts_options_handler.h (revision 92173)
+++ chrome/browser/ui/webui/options/chromeos/accounts_options_handler.h (working copy)
@@ -22,17 +22,17 @@
virtual void RegisterMessages();
// OptionsPageUIHandler implementation.
- virtual void GetLocalizedValues(DictionaryValue* localized_strings);
+ virtual void GetLocalizedValues(base::DictionaryValue* localized_strings);
private:
UserCrosSettingsProvider* users_settings() const;
// Javascript callbacks to whitelist/unwhitelist user.
- void WhitelistUser(const ListValue* args);
- void UnwhitelistUser(const ListValue* args);
+ void WhitelistUser(const base::ListValue* args);
+ void UnwhitelistUser(const base::ListValue* args);
// Javascript callback to auto add existing users to white list.
- void WhitelistExistingUsers(const ListValue* args);
+ void WhitelistExistingUsers(const base::ListValue* args);
DISALLOW_COPY_AND_ASSIGN(AccountsOptionsHandler);
};

Powered by Google App Engine
This is Rietveld 408576698