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

Unified Diff: chrome/common/extensions/extension.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
« no previous file with comments | « chrome/browser/extensions/updater/extension_downloader.h ('k') | chrome/installer/setup/install_worker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/extension.h
diff --git a/chrome/common/extensions/extension.h b/chrome/common/extensions/extension.h
index d24e2ab57a7cb0736a31a3868024b179c304877c..10b143023e91713896440f3ee62abf76bd1a9949 100644
--- a/chrome/common/extensions/extension.h
+++ b/chrome/common/extensions/extension.h
@@ -35,11 +35,11 @@
class ExtensionAction;
class SkBitmap;
-class Version;
namespace base {
class DictionaryValue;
class ListValue;
+class Version;
}
namespace gfx {
@@ -393,7 +393,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
const GURL& url() const { return extension_url_; }
Manifest::Location location() const;
const std::string& id() const;
- const Version* version() const { return version_.get(); }
+ const base::Version* version() const { return version_.get(); }
const std::string VersionString() const;
const std::string& name() const { return name_; }
const std::string& non_localized_name() const { return non_localized_name_; }
@@ -611,7 +611,7 @@ class Extension : public base::RefCountedThreadSafe<Extension> {
GURL extension_url_;
// The extension's version.
- scoped_ptr<Version> version_;
+ scoped_ptr<base::Version> version_;
// An optional longer description of the extension.
std::string description_;
« no previous file with comments | « chrome/browser/extensions/updater/extension_downloader.h ('k') | chrome/installer/setup/install_worker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698