| 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_;
|
|
|