| 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
|
|
|