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

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

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months 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_extension_provider_impl.h
===================================================================
--- chrome/browser/extensions/external_extension_provider_impl.h (revision 92173)
+++ chrome/browser/extensions/external_extension_provider_impl.h (working copy)
@@ -11,12 +11,15 @@
#include "base/memory/ref_counted.h"
#include "chrome/browser/extensions/external_extension_loader.h"
-class DictionaryValue;
class ExternalExtensionLoader;
class Profile;
-class ValueSerializer;
class Version;
+namespace base {
+class DictionaryValue;
+class ValueSerializer;
+}
+
// A specialization of the ExternalExtensionProvider that uses an instance
// of ExternalExtensionLoader to provide external extensions. This class
// can be seen as a bridge between the extension system and an
@@ -47,7 +50,7 @@
// Sets underlying prefs and notifies provider. Only to be called by the
// owned ExternalExtensionLoader instance.
- void SetPrefs(DictionaryValue* prefs);
+ void SetPrefs(base::DictionaryValue* prefs);
// ExternalExtensionProvider implementation:
virtual void VisitRegisteredExtension() const;
@@ -83,7 +86,7 @@
VisitorInterface* service_; // weak
// Dictionary of the external extensions that are provided by this provider.
- scoped_ptr<DictionaryValue> prefs_;
+ scoped_ptr<base::DictionaryValue> prefs_;
// Indicates that the extensions provided by this provider are loaded
// entirely.
« no previous file with comments | « chrome/browser/extensions/external_extension_loader.h ('k') | chrome/browser/extensions/external_policy_extension_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698