summaryrefslogtreecommitdiffstats
path: root/chrome/browser/profile_resetter/brandcoded_default_settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/profile_resetter/brandcoded_default_settings.h')
-rw-r--r--chrome/browser/profile_resetter/brandcoded_default_settings.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/profile_resetter/brandcoded_default_settings.h b/chrome/browser/profile_resetter/brandcoded_default_settings.h
index bdd7adf..2de4041 100644
--- a/chrome/browser/profile_resetter/brandcoded_default_settings.h
+++ b/chrome/browser/profile_resetter/brandcoded_default_settings.h
@@ -25,7 +25,7 @@ class BrandcodedDefaultSettings {
// provided for given setting.
// After the call return_value contains a list of default engines.
// |return_value[0]| is default one.
- scoped_ptr<ListValue> GetSearchProviderOverrides() const;
+ scoped_ptr<base::ListValue> GetSearchProviderOverrides() const;
bool GetHomepage(std::string* homepage) const;
bool GetHomepageIsNewTab(bool* homepage_is_ntp) const;
@@ -35,10 +35,10 @@ class BrandcodedDefaultSettings {
bool GetExtensions(std::vector<std::string>* extension_ids) const;
bool GetRestoreOnStartup(int* restore_on_startup) const;
- scoped_ptr<ListValue> GetUrlsToRestoreOnStartup() const;
+ scoped_ptr<base::ListValue> GetUrlsToRestoreOnStartup() const;
private:
- scoped_ptr<ListValue> ExtractList(const char* pref_name) const;
+ scoped_ptr<base::ListValue> ExtractList(const char* pref_name) const;
scoped_ptr<base::DictionaryValue> master_dictionary_;