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

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

Issue 23526047: Delete old chromedriver code, and remove mongoose webserver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 3 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
Index: chrome/test/webdriver/keycode_text_conversion.h
diff --git a/chrome/test/webdriver/keycode_text_conversion.h b/chrome/test/webdriver/keycode_text_conversion.h
deleted file mode 100644
index c1f7e33683374150e560d8386084cd0fd6027211..0000000000000000000000000000000000000000
--- a/chrome/test/webdriver/keycode_text_conversion.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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_KEYCODE_TEXT_CONVERSION_H_
-#define CHROME_TEST_WEBDRIVER_KEYCODE_TEXT_CONVERSION_H_
-
-#include <string>
-
-#include "base/strings/string16.h"
-#include "ui/base/keycodes/keyboard_codes.h"
-
-namespace webdriver {
-
-// These functions only support conversion of characters in the BMP
-// (Basic Multilingual Plane).
-
-// Returns the text in UTF8 that would be produced from the given key code and
-// modifiers with the current keyboard layout, or "" if no character would
-// be produced. This will return "" if the produced text contains characters
-// outside the BMP.
-std::string ConvertKeyCodeToText(ui::KeyboardCode key_code, int modifiers);
-
-// Converts a character to the key code and modifiers that would produce
-// the character using the current keyboard layout. Returns true on success.
-bool ConvertCharToKeyCode(
- char16 key, ui::KeyboardCode* key_code, int *necessary_modifiers);
-
-} // namespace webdriver
-
-#endif // CHROME_TEST_WEBDRIVER_KEYCODE_TEXT_CONVERSION_H_
« no previous file with comments | « chrome/test/webdriver/http_response_unittest.cc ('k') | chrome/test/webdriver/keycode_text_conversion_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698