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

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

Issue 1281313003: base: Remove using:: declaration from version.h header. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more fixes Created 5 years, 4 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/pending_extension_info.h
diff --git a/chrome/browser/extensions/pending_extension_info.h b/chrome/browser/extensions/pending_extension_info.h
index 8ac52c55642c6217222db8472e20a959bcdf38a1..98bb35af5d3a8df99fac20eda8928b95d6d55534 100644
--- a/chrome/browser/extensions/pending_extension_info.h
+++ b/chrome/browser/extensions/pending_extension_info.h
@@ -30,7 +30,7 @@ class PendingExtensionInfo {
PendingExtensionInfo(const std::string& id,
const std::string& install_parameter,
const GURL& update_url,
- const Version& version,
+ const base::Version& version,
ShouldAllowInstallPredicate should_allow_install,
bool is_from_sync,
Manifest::Location install_source,
@@ -48,7 +48,7 @@ class PendingExtensionInfo {
const std::string& id() const { return id_; }
const GURL& update_url() const { return update_url_; }
- const Version& version() const { return version_; }
+ const base::Version& version() const { return version_; }
const std::string& install_parameter() const { return install_parameter_; }
// ShouldAllowInstall() returns the result of running constructor argument
@@ -77,7 +77,7 @@ class PendingExtensionInfo {
std::string id_;
GURL update_url_;
- Version version_;
+ base::Version version_;
std::string install_parameter_;
// When the extension is about to be installed, this function is
« no previous file with comments | « chrome/browser/extensions/external_registry_loader_win.cc ('k') | chrome/browser/extensions/pending_extension_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698