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

Unified Diff: chrome/browser/ui/webui/options/options_ui.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/options_ui.h
===================================================================
--- chrome/browser/ui/webui/options/options_ui.h (revision 92173)
+++ chrome/browser/ui/webui/options/options_ui.h (working copy)
@@ -31,7 +31,7 @@
virtual bool IsEnabled();
// Collects localized strings for options page.
- virtual void GetLocalizedValues(DictionaryValue* localized_strings) = 0;
+ virtual void GetLocalizedValues(base::DictionaryValue* localized_strings) = 0;
// Initialize the page. Called once the DOM is available for manipulation.
// This will be called only once.
@@ -58,12 +58,12 @@
int id;
};
// A helper for simplifying the process of registering strings in WebUI.
- static void RegisterStrings(DictionaryValue* localized_strings,
+ static void RegisterStrings(base::DictionaryValue* localized_strings,
const OptionsStringResource* resources,
size_t length);
// Registers string resources for a page's header and tab title.
- static void RegisterTitle(DictionaryValue* localized_strings,
+ static void RegisterTitle(base::DictionaryValue* localized_strings,
const std::string& variable_name,
int title_id);
@@ -98,7 +98,7 @@
private:
// Adds OptionsPageUiHandler to the handlers list if handler is enabled.
- void AddOptionsPageUIHandler(DictionaryValue* localized_strings,
+ void AddOptionsPageUIHandler(base::DictionaryValue* localized_strings,
OptionsPageUIHandler* handler);
bool initialized_handlers_;

Powered by Google App Engine
This is Rietveld 408576698