summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/external_provider_impl.h
diff options
context:
space:
mode:
authorxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-22 07:35:50 +0000
committerxhwang@chromium.org <xhwang@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-22 07:35:50 +0000
commit1f04ef4db936365c0cc1990f1a2b8a7bbbe37653 (patch)
tree571f9feea8ed976c01a7bd1cf56cee9894d5c005 /chrome/browser/extensions/external_provider_impl.h
parent9246e364afd394dd3a7cc2bf838c7ea0b4fc1133 (diff)
downloadchromium_src-1f04ef4db936365c0cc1990f1a2b8a7bbbe37653.zip
chromium_src-1f04ef4db936365c0cc1990f1a2b8a7bbbe37653.tar.gz
chromium_src-1f04ef4db936365c0cc1990f1a2b8a7bbbe37653.tar.bz2
Move Version to base namespace.
Adds "using base::Version" to the header to avoid having to update everything at once. All forward declares and the locations where the forward declares are used are updated. Review URL: https://chromiumcodereview.appspot.com/14099010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@195456 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/external_provider_impl.h')
-rw-r--r--chrome/browser/extensions/external_provider_impl.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/chrome/browser/extensions/external_provider_impl.h b/chrome/browser/extensions/external_provider_impl.h
index 32d3763..6c31b90 100644
--- a/chrome/browser/extensions/external_provider_impl.h
+++ b/chrome/browser/extensions/external_provider_impl.h
@@ -14,10 +14,10 @@
#include "chrome/common/extensions/manifest.h"
class Profile;
-class Version;
namespace base {
class DictionaryValue;
+class Version;
}
namespace extensions {
@@ -58,9 +58,10 @@ class ExternalProviderImpl : public ExternalProviderInterface {
virtual void ServiceShutdown() OVERRIDE;
virtual void VisitRegisteredExtension() OVERRIDE;
virtual bool HasExtension(const std::string& id) const OVERRIDE;
- virtual bool GetExtensionDetails(const std::string& id,
- Manifest::Location* location,
- scoped_ptr<Version>* version) const OVERRIDE;
+ virtual bool GetExtensionDetails(
+ const std::string& id,
+ Manifest::Location* location,
+ scoped_ptr<base::Version>* version) const OVERRIDE;
virtual bool IsReady() const OVERRIDE;