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

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

Issue 14099010: Move Version to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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_provider_interface.h
diff --git a/chrome/browser/extensions/external_provider_interface.h b/chrome/browser/extensions/external_provider_interface.h
index 20173864d4c8403a88f20c3191774cb46e855c56..d82e0b1ef4acee833927891f12c392de76d5e0eb 100644
--- a/chrome/browser/extensions/external_provider_interface.h
+++ b/chrome/browser/extensions/external_provider_interface.h
@@ -11,10 +11,10 @@
#include "chrome/common/extensions/manifest.h"
class GURL;
-class Version;
namespace base {
class FilePath;
+class Version;
}
namespace extensions {
@@ -35,7 +35,7 @@ class ExternalProviderInterface {
// location.
virtual bool OnExternalExtensionFileFound(
const std::string& id,
- const Version* version,
+ const base::Version* version,
const base::FilePath& path,
Manifest::Location location,
int creation_flags,
@@ -78,9 +78,10 @@ class ExternalProviderInterface {
// if they are not NULL. If an output parameter is not specified by the
// provider type, it will not be changed.
// This function is no longer used outside unit tests.
- virtual bool GetExtensionDetails(const std::string& id,
- Manifest::Location* location,
- scoped_ptr<Version>* version) const = 0;
+ virtual bool GetExtensionDetails(
+ const std::string& id,
+ Manifest::Location* location,
+ scoped_ptr<base::Version>* version) const = 0;
// Determines if this provider had loaded the list of external extensions
// from its source.
« no previous file with comments | « chrome/browser/extensions/external_provider_impl.h ('k') | chrome/browser/extensions/pending_extension_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698