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

Unified Diff: ui/keyboard/keyboard_controller_unittest.cc

Issue 13164002: Create and show the virtual keyboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove fixme Created 7 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 side-by-side diff with in-line comments
Download patch
Index: ui/keyboard/keyboard_controller_unittest.cc
diff --git a/ui/keyboard/keyboard_controller_unittest.cc b/ui/keyboard/keyboard_controller_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..68351d5277b339259c21837e3a9ba78f25b8eff1
--- /dev/null
+++ b/ui/keyboard/keyboard_controller_unittest.cc
@@ -0,0 +1,28 @@
+// Copyright (c) 2013 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.
+
+#include "ui/keyboard/keyboard_controller.h"
+
+#include "base/utf_string_conversions.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace keyboard {
+namespace {
+
+class KeyboardControllerTest : public testing::Test {
+ public:
+ KeyboardControllerTest() {}
+ virtual ~KeyboardControllerTest() {}
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(KeyboardControllerTest);
+};
+
+} // namespace
+
+TEST_F(KeyboardControllerTest, KeyboardSize) {
+ ASSERT_TRUE(false);
+}
+
+} // namespace keyboard

Powered by Google App Engine
This is Rietveld 408576698