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

Unified Diff: chrome/browser/extensions/updater/extension_downloader.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/pending_extension_manager.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/updater/extension_downloader.h
diff --git a/chrome/browser/extensions/updater/extension_downloader.h b/chrome/browser/extensions/updater/extension_downloader.h
index 302a74b36ddfaf9a1da894d1881f2151339868d4..29c2fc52a04b10f02d7697e1b4581f5544807aa7 100644
--- a/chrome/browser/extensions/updater/extension_downloader.h
+++ b/chrome/browser/extensions/updater/extension_downloader.h
@@ -26,8 +26,6 @@
#include "googleurl/src/gurl.h"
#include "net/url_request/url_fetcher_delegate.h"
-class Version;
-
namespace net {
class URLFetcher;
class URLRequestContextGetter;
@@ -37,11 +35,11 @@ class URLRequestStatus;
namespace extensions {
struct UpdateDetails {
- UpdateDetails(const std::string& id, const Version& version);
+ UpdateDetails(const std::string& id, const base::Version& version);
~UpdateDetails();
std::string id;
- Version version;
+ base::Version version;
};
class ExtensionUpdaterTest;
@@ -134,7 +132,7 @@ class ExtensionDownloader : public net::URLFetcherDelegate {
// Helper for AddExtension() and AddPendingExtension().
bool AddExtensionData(const std::string& id,
- const Version& version,
+ const base::Version& version,
Manifest::Type extension_type,
const GURL& extension_update_url,
const std::string& update_url_data,
« no previous file with comments | « chrome/browser/extensions/pending_extension_manager.h ('k') | chrome/common/extensions/extension.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698