| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/test/webdriver/keymap.h" | 5 #include "chrome/test/webdriver/keymap.h" |
| 6 | 6 |
| 7 #include "chrome/browser/automation/ui_controls.h" | 7 #include "chrome/browser/automation/ui_controls.h" |
| 8 #include "ui/base/events.h" | 8 #include "ui/base/events.h" |
| 9 | 9 |
| 10 namespace webdriver { | 10 namespace webdriver { |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 167 } | 167 } |
| 168 | 168 |
| 169 void KeyMap::ClearModifiers() { | 169 void KeyMap::ClearModifiers() { |
| 170 shift_ = false; | 170 shift_ = false; |
| 171 alt_ = false; | 171 alt_ = false; |
| 172 control_ = false; | 172 control_ = false; |
| 173 command_ = false; | 173 command_ = false; |
| 174 } | 174 } |
| 175 | 175 |
| 176 } // namespace webdriver | 176 } // namespace webdriver |
| 177 | |
| OLD | NEW |