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

Unified Diff: chrome/browser/extensions/external_pref_loader.h

Issue 104493005: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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/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);
};
« no previous file with comments | « chrome/browser/extensions/external_policy_loader.cc ('k') | chrome/browser/extensions/external_provider_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698