| Index: chrome/browser/automation/ui_controls_win.cc
|
| diff --git a/chrome/browser/automation/ui_controls_win.cc b/chrome/browser/automation/ui_controls_win.cc
|
| index 85aafec809f95987c479264a67a6212a90cbb617..4e9f673bdf1bb281734a6036e9a8df737dac2095 100644
|
| --- a/chrome/browser/automation/ui_controls_win.cc
|
| +++ b/chrome/browser/automation/ui_controls_win.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -183,7 +183,7 @@ bool SendKeyPressImpl(base::KeyboardCode key,
|
|
|
| INPUT input[8] = { 0 }; // 8, assuming all the modifiers are activated
|
|
|
| - UINT i = 0;
|
| + int i = 0;
|
| if (control) {
|
| if (!FillKeyboardInput(base::VKEY_CONTROL, &input[i], false))
|
| return false;
|
| @@ -228,7 +228,9 @@ bool SendKeyPressImpl(base::KeyboardCode key,
|
| i++;
|
| }
|
|
|
| - if (::SendInput(i, input, sizeof(INPUT) != i))
|
| + unsigned int rv = ::SendInput(i, input, sizeof(INPUT));
|
| +
|
| + if (rv != i)
|
| return false;
|
|
|
| if (dispatcher.get())
|
|
|