summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/webui/options/options_ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/ui/webui/options/options_ui.h')
-rw-r--r--chrome/browser/ui/webui/options/options_ui.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/ui/webui/options/options_ui.h b/chrome/browser/ui/webui/options/options_ui.h
index 1ebbfa9..d4a27f8 100644
--- a/chrome/browser/ui/webui/options/options_ui.h
+++ b/chrome/browser/ui/webui/options/options_ui.h
@@ -31,7 +31,7 @@ class OptionsPageUIHandler : public WebUIMessageHandler,
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 @@ class OptionsPageUIHandler : public WebUIMessageHandler,
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 @@ class OptionsUI : public ChromeWebUI,
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_;