| Index: chrome/browser/extensions/external_pref_loader.h
|
| diff --git a/chrome/browser/extensions/external_pref_loader.h b/chrome/browser/extensions/external_pref_loader.h
|
| index 231fbe3adcb0161171e1375ffd6d070b07780c7f..c4508c28ee37b82170b06635b1d3b384877d9e3a 100644
|
| --- a/chrome/browser/extensions/external_pref_loader.h
|
| +++ b/chrome/browser/extensions/external_pref_loader.h
|
| @@ -63,14 +63,14 @@ class ExternalPrefLoader : public ExternalLoader {
|
| // regarding which extensions to install. |prefs| will be modified to
|
| // receive the extracted extension information.
|
| // Must be called from the File thread.
|
| - void ReadExternalExtensionPrefFile(DictionaryValue * prefs);
|
| + void ReadExternalExtensionPrefFile(base::DictionaryValue* prefs);
|
|
|
| // Extracts the information contained in standalone external extension
|
| // json files (<extension id>.json) regarding what external extensions
|
| // to install. |prefs| will be modified to receive the extracted extension
|
| // information.
|
| // Must be called from the File thread.
|
| - void ReadStandaloneExtensionPrefFiles(DictionaryValue * prefs);
|
| + void ReadStandaloneExtensionPrefFiles(base::DictionaryValue* prefs);
|
|
|
| // The path (coresponding to |base_path_id_| containing the json files
|
| // describing which extensions to load.
|
| @@ -97,7 +97,7 @@ class ExternalTestingLoader : public ExternalLoader {
|
| virtual ~ExternalTestingLoader();
|
|
|
| base::FilePath fake_base_path_;
|
| - scoped_ptr<DictionaryValue> testing_prefs_;
|
| + scoped_ptr<base::DictionaryValue> testing_prefs_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ExternalTestingLoader);
|
| };
|
|
|