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

Side by Side 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, 8 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
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/keyboard/keyboard_controller.h"
6
7 #include "base/utf_string_conversions.h"
8 #include "testing/gtest/include/gtest/gtest.h"
9
10 namespace keyboard {
11 namespace {
12
13 class KeyboardControllerTest : public testing::Test {
14 public:
15 KeyboardControllerTest() {}
16 virtual ~KeyboardControllerTest() {}
17
18 private:
19 DISALLOW_COPY_AND_ASSIGN(KeyboardControllerTest);
20 };
21
22 } // namespace
23
24 TEST_F(KeyboardControllerTest, KeyboardSize) {
25 ASSERT_TRUE(false);
26 }
27
28 } // namespace keyboard
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698