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

Unified Diff: ui/base/ime/win/mock_tsf_bridge.cc

Issue 149073009: Remove InputMethodTSF, TSFEventRouter, TSFTextStore, TSFBridge (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert input_method_imm32 changes Created 6 years, 11 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
« no previous file with comments | « ui/base/ime/win/mock_tsf_bridge.h ('k') | ui/base/ime/win/tsf_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/win/mock_tsf_bridge.cc
diff --git a/ui/base/ime/win/mock_tsf_bridge.cc b/ui/base/ime/win/mock_tsf_bridge.cc
deleted file mode 100644
index a26a81b1ebb138dd816912473a58abb1e42a306b..0000000000000000000000000000000000000000
--- a/ui/base/ime/win/mock_tsf_bridge.cc
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright (c) 2012 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/base/ime/win/mock_tsf_bridge.h"
-
-#include "ui/base/ime/text_input_client.h"
-#include "base/logging.h"
-
-namespace ui {
-
-MockTSFBridge::MockTSFBridge()
- : enable_ime_call_count_(0),
- disalbe_ime_call_count_(0),
- cancel_composition_call_count_(0),
- confirm_composition_call_count_(0),
- on_text_layout_changed_(0),
- associate_focus_call_count_(0),
- set_focused_client_call_count_(0),
- remove_focused_client_call_count_(0),
- text_input_client_(NULL),
- focused_window_(NULL),
- latest_text_input_type_(TEXT_INPUT_TYPE_NONE) {
-}
-
-MockTSFBridge::~MockTSFBridge() {
-}
-
-bool MockTSFBridge::CancelComposition() {
- ++cancel_composition_call_count_;
- return true;
-}
-
-bool MockTSFBridge::ConfirmComposition() {
- ++confirm_composition_call_count_;
- return true;
-}
-
-void MockTSFBridge::OnTextInputTypeChanged(const TextInputClient* client) {
- latest_text_input_type_ = client->GetTextInputType();
-}
-
-void MockTSFBridge::OnTextLayoutChanged() {
- ++on_text_layout_changed_;
-}
-
-void MockTSFBridge::SetFocusedClient(HWND focused_window,
- TextInputClient* client) {
- ++set_focused_client_call_count_;
- focused_window_ = focused_window;
- text_input_client_ = client;
-}
-
-void MockTSFBridge::RemoveFocusedClient(TextInputClient* client) {
- ++remove_focused_client_call_count_;
- DCHECK_EQ(client, text_input_client_);
- text_input_client_ = NULL;
- focused_window_ = NULL;
-}
-
-base::win::ScopedComPtr<ITfThreadMgr> MockTSFBridge::GetThreadManager() {
- return thread_manager_;
-}
-
-TextInputClient* MockTSFBridge::GetFocusedTextInputClient() const {
- return text_input_client_;
-}
-
-void MockTSFBridge::Reset() {
- enable_ime_call_count_ = 0;
- disalbe_ime_call_count_ = 0;
- cancel_composition_call_count_ = 0;
- confirm_composition_call_count_ = 0;
- on_text_layout_changed_ = 0;
- associate_focus_call_count_ = 0;
- set_focused_client_call_count_ = 0;
- remove_focused_client_call_count_ = 0;
- text_input_client_ = NULL;
- focused_window_ = NULL;
- latest_text_input_type_ = TEXT_INPUT_TYPE_NONE;
-}
-
-} // namespace ui
« no previous file with comments | « ui/base/ime/win/mock_tsf_bridge.h ('k') | ui/base/ime/win/tsf_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698