| Index: chrome/common/service_process_util.cc
|
| diff --git a/chrome/common/service_process_util.cc b/chrome/common/service_process_util.cc
|
| index 6773fabc32df1f33126c0e54459cd0e50d7ce7cb..d542b74e368cb2553c6ab2cb5ed8cc1a2231ed61 100644
|
| --- a/chrome/common/service_process_util.cc
|
| +++ b/chrome/common/service_process_util.cc
|
| @@ -67,7 +67,7 @@ ServiceProcessRunningState GetServiceProcessRunningState(
|
| if (service_version_out)
|
| *service_version_out = version;
|
|
|
| - base::Version service_version(version);
|
| + Version service_version(version);
|
| // If the version string is invalid, treat it like an older version.
|
| if (!service_version.IsValid())
|
| return SERVICE_OLDER_VERSION_RUNNING;
|
| @@ -80,7 +80,7 @@ ServiceProcessRunningState GetServiceProcessRunningState(
|
| // are out of date.
|
| return SERVICE_NEWER_VERSION_RUNNING;
|
| }
|
| - base::Version running_version(version_info.Version());
|
| + Version running_version(version_info.Version());
|
| if (!running_version.IsValid()) {
|
| NOTREACHED() << "Failed to parse version info";
|
| // Our own version is invalid. This is an error case. Pretend that we
|
|
|