diff options
Diffstat (limited to 'chrome/app/google_update_client.cc')
-rwxr-xr-x | chrome/app/google_update_client.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/app/google_update_client.cc b/chrome/app/google_update_client.cc index 65acec6..019c401 100755 --- a/chrome/app/google_update_client.cc +++ b/chrome/app/google_update_client.cc @@ -48,7 +48,6 @@ const wchar_t* GoogleUpdateClient::GetVersion() const { bool GoogleUpdateClient::Launch(HINSTANCE instance, sandbox::SandboxInterfaceInfo* sandbox, wchar_t* command_line, - int show_command, const char* entry_name, int* ret) { if (client_util::FileExists(dll_path_)) { @@ -90,7 +89,7 @@ bool GoogleUpdateClient::Launch(HINSTANCE instance, ::RegCloseKey(reg_key); } - int rc = (entry)(instance, sandbox, command_line, show_command); + int rc = (entry)(instance, sandbox, command_line); if (ret) { *ret = rc; } |