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

Unified Diff: chrome/test/webdriver/webdriver_key_converter.h

Issue 6482014: Implement sendKeys webdriver API in ChromeDriver. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/webdriver/session.cc ('k') | chrome/test/webdriver/webdriver_key_converter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/webdriver/webdriver_key_converter.h
===================================================================
--- chrome/test/webdriver/webdriver_key_converter.h (revision 0)
+++ chrome/test/webdriver/webdriver_key_converter.h (revision 0)
@@ -0,0 +1,31 @@
+// Copyright (c) 2011 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.
+
+#ifndef CHROME_TEST_WEBDRIVER_WEBDRIVER_KEY_CONVERTER_H_
+#define CHROME_TEST_WEBDRIVER_WEBDRIVER_KEY_CONVERTER_H_
+#pragma once
+
+#include <string>
+#include <vector>
+
+#include "base/string16.h"
+#include "chrome/test/webdriver/automation.h"
+#include "ui/base/keycodes/keyboard_codes.h"
+
+namespace webdriver {
+
+// Convenience functions for creating |WebKeyEvent|s. Used by unittests.
+WebKeyEvent CreateKeyDownEvent(ui::KeyboardCode key_code, int modifiers);
+WebKeyEvent CreateKeyUpEvent(ui::KeyboardCode key_code, int modifiers);
+WebKeyEvent CreateCharEvent(const std::string& unmodified_text,
+ const std::string& modified_text,
+ int modifiers);
+
+// Converts keys into appropriate |WebKeyEvent|s.
+void ConvertKeysToWebKeyEvents(const string16& keys,
+ std::vector<WebKeyEvent>* key_events);
+
+} // namespace webdriver
+
+#endif // CHROME_TEST_WEBDRIVER_WEBDRIVER_KEY_CONVERTER_H_
Property changes on: chrome\test\webdriver\webdriver_key_converter.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/test/webdriver/session.cc ('k') | chrome/test/webdriver/webdriver_key_converter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698