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

Unified Diff: chrome/common/service_process_util_mac.mm

Issue 100543005: Update all users of base::Version to explicitly specify the namespace, and clean up the header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: someday it will work Created 7 years 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/common/service_process_util.cc ('k') | chrome/installer/setup/install.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/service_process_util_mac.mm
diff --git a/chrome/common/service_process_util_mac.mm b/chrome/common/service_process_util_mac.mm
index d02362737a5feaf9732a484c42ebf8f4311433aa..8dd7525bfad4de7ecf059044befa31db80898128 100644
--- a/chrome/common/service_process_util_mac.mm
+++ b/chrome/common/service_process_util_mac.mm
@@ -203,7 +203,7 @@ bool CheckServiceProcessReady() {
if (!GetServiceProcessData(&version, &pid)) {
return false;
}
- Version service_version(version);
+ base::Version service_version(version);
bool ready = true;
if (!service_version.IsValid()) {
ready = false;
@@ -216,7 +216,7 @@ bool CheckServiceProcessReady() {
ready = true;
}
else {
- Version running_version(version_info.Version());
+ base::Version running_version(version_info.Version());
if (!running_version.IsValid()) {
// Our own version is invalid. This is an error case. Pretend that we
// are out of date.
« no previous file with comments | « chrome/common/service_process_util.cc ('k') | chrome/installer/setup/install.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698