| Index: chrome/test/automation/automation_proxy.cc
|
| diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc
|
| index 04bc7eaa0d07aa25eafb13ba1a78929872a0a3c4..ecaf5d83fff60f079c939abed4732b590add3c29 100644
|
| --- a/chrome/test/automation/automation_proxy.cc
|
| +++ b/chrome/test/automation/automation_proxy.cc
|
| @@ -13,6 +13,7 @@
|
| #include "base/process_util.h"
|
| #include "base/ref_counted.h"
|
| #include "base/waitable_event.h"
|
| +#include "chrome/app/chrome_version_info.h"
|
| #include "chrome/test/automation/automation_constants.h"
|
| #include "chrome/test/automation/automation_messages.h"
|
| #include "chrome/test/automation/browser_proxy.h"
|
| @@ -173,7 +174,7 @@ AutomationLaunchResult AutomationProxy::WaitForAppLaunch() {
|
| // Obtain our own version number and compare it to what the automation
|
| // provider sent.
|
| scoped_ptr<FileVersionInfo> file_version_info(
|
| - FileVersionInfo::CreateFileVersionInfoForCurrentModule());
|
| + chrome_app::GetChromeVersionInfo());
|
| DCHECK(file_version_info != NULL);
|
| std::string version_string(
|
| WideToASCII(file_version_info->file_version()));
|
|
|