| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/logging.h" | 5 #include "base/logging.h" |
| 6 #include "chromeos/ime/component_extension_ime_manager.h" | |
| 7 #include "chromeos/ime/extension_ime_util.h" | |
| 8 #include "chromeos/ime/mock_component_extension_ime_manager_delegate.h" | |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 6 #include "testing/gtest/include/gtest/gtest.h" |
| 7 #include "ui/chromeos/ime/component_extension_ime_manager.h" |
| 8 #include "ui/chromeos/ime/extension_ime_util.h" |
| 9 #include "ui/chromeos/ime/mock_component_extension_ime_manager_delegate.h" |
| 10 | 10 |
| 11 namespace chromeos { | 11 namespace chromeos { |
| 12 namespace input_method { | 12 namespace input_method { |
| 13 | 13 |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 class ComponentExtensionIMEManagerTest : public testing::Test { | 16 class ComponentExtensionIMEManagerTest : public testing::Test { |
| 17 public: | 17 public: |
| 18 ComponentExtensionIMEManagerTest() : mock_delegate_(NULL) {} | 18 ComponentExtensionIMEManagerTest() : mock_delegate_(NULL) {} |
| 19 | 19 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 } else if (i >= 2 && i < 4) { | 200 } else if (i >= 2 && i < 4) { |
| 201 EXPECT_TRUE(d.id().find("vkd_") != std::string::npos); | 201 EXPECT_TRUE(d.id().find("vkd_") != std::string::npos); |
| 202 } | 202 } |
| 203 } | 203 } |
| 204 } | 204 } |
| 205 | 205 |
| 206 } // namespace | 206 } // namespace |
| 207 | 207 |
| 208 } // namespace input_method | 208 } // namespace input_method |
| 209 } // namespace chromeos | 209 } // namespace chromeos |
| OLD | NEW |