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

Unified Diff: extensions/browser/pending_extension_info.h

Issue 109673004: Revert "Update all users of base::Version to explicitly specify the namespace, and clean up the hea… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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 | « content/renderer/npapi/webplugin_delegate_proxy.cc ('k') | extensions/browser/pending_extension_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/pending_extension_info.h
diff --git a/extensions/browser/pending_extension_info.h b/extensions/browser/pending_extension_info.h
index b2eb00ffff6ebef5cdad678bffbab931576c2f98..fd1d3aec4fdb0e0fcf9abcbae24fd4c59ff5b412 100644
--- a/extensions/browser/pending_extension_info.h
+++ b/extensions/browser/pending_extension_info.h
@@ -30,7 +30,7 @@ class PendingExtensionInfo {
PendingExtensionInfo(
const std::string& id,
const GURL& update_url,
- const base::Version& version,
+ const Version& version,
ShouldAllowInstallPredicate should_allow_install,
bool is_from_sync,
bool install_silently,
@@ -46,7 +46,7 @@ class PendingExtensionInfo {
const std::string& id() const { return id_; }
const GURL& update_url() const { return update_url_; }
- const base::Version& version() const { return version_; }
+ const Version& version() const { return version_; }
// ShouldAllowInstall() returns the result of running constructor argument
// |should_allow_install| on an extension. After an extension is unpacked,
@@ -74,7 +74,7 @@ class PendingExtensionInfo {
std::string id_;
GURL update_url_;
- base::Version version_;
+ Version version_;
// When the extension is about to be installed, this function is
// called. If this function returns true, the install proceeds. If
« no previous file with comments | « content/renderer/npapi/webplugin_delegate_proxy.cc ('k') | extensions/browser/pending_extension_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698