Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Side by Side Diff: chrome/test/webdriver/keymap.cc

Issue 6630001: Allow webdriver users to choose between sending the key events when... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698