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

Unified Diff: ui/base/ime/dummy_text_input_client.cc

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 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/dummy_text_input_client.h ('k') | ui/base/ime/infolist_entry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/dummy_text_input_client.cc
diff --git a/ui/base/ime/dummy_text_input_client.cc b/ui/base/ime/dummy_text_input_client.cc
deleted file mode 100644
index cea49c676c06462e3d7aa8be562ed2f5cc092362..0000000000000000000000000000000000000000
--- a/ui/base/ime/dummy_text_input_client.cc
+++ /dev/null
@@ -1,121 +0,0 @@
-// Copyright 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/base/ime/dummy_text_input_client.h"
-#include "ui/gfx/rect.h"
-
-namespace ui {
-
-DummyTextInputClient::DummyTextInputClient()
- : text_input_type_(TEXT_INPUT_TYPE_NONE) {}
-
-DummyTextInputClient::DummyTextInputClient(TextInputType text_input_type)
- : text_input_type_(text_input_type) {}
-
-DummyTextInputClient::~DummyTextInputClient() {
-}
-
-void DummyTextInputClient::SetCompositionText(
- const CompositionText& composition) {
-}
-
-void DummyTextInputClient::ConfirmCompositionText() {
-}
-
-void DummyTextInputClient::ClearCompositionText() {
-}
-
-void DummyTextInputClient::InsertText(const base::string16& text) {
-}
-
-void DummyTextInputClient::InsertChar(base::char16 ch, int flags) {
-}
-
-gfx::NativeWindow DummyTextInputClient::GetAttachedWindow() const {
- return NULL;
-}
-
-TextInputType DummyTextInputClient::GetTextInputType() const {
- return text_input_type_;
-}
-
-TextInputMode DummyTextInputClient::GetTextInputMode() const {
- return TEXT_INPUT_MODE_DEFAULT;
-}
-
-bool DummyTextInputClient::CanComposeInline() const {
- return false;
-}
-
-gfx::Rect DummyTextInputClient::GetCaretBounds() const {
- return gfx::Rect();
-}
-
-bool DummyTextInputClient::GetCompositionCharacterBounds(
- uint32 index,
- gfx::Rect* rect) const {
- return false;
-}
-
-bool DummyTextInputClient::HasCompositionText() const {
- return false;
-}
-
-bool DummyTextInputClient::GetTextRange(gfx::Range* range) const {
- return false;
-}
-
-bool DummyTextInputClient::GetCompositionTextRange(gfx::Range* range) const {
- return false;
-}
-
-bool DummyTextInputClient::GetSelectionRange(gfx::Range* range) const {
- return false;
-}
-
-bool DummyTextInputClient::SetSelectionRange(const gfx::Range& range) {
- return false;
-}
-
-bool DummyTextInputClient::DeleteRange(const gfx::Range& range) {
- return false;
-}
-
-bool DummyTextInputClient::GetTextFromRange(const gfx::Range& range,
- base::string16* text) const {
- return false;
-}
-
-void DummyTextInputClient::OnInputMethodChanged() {
-}
-
-bool DummyTextInputClient::ChangeTextDirectionAndLayoutAlignment(
- base::i18n::TextDirection direction) {
- return false;
-}
-
-void DummyTextInputClient::ExtendSelectionAndDelete(size_t before,
- size_t after) {
-}
-
-void DummyTextInputClient::EnsureCaretInRect(const gfx::Rect& rect) {
-}
-
-void DummyTextInputClient::OnCandidateWindowShown() {
-}
-
-void DummyTextInputClient::OnCandidateWindowUpdated() {
-}
-
-void DummyTextInputClient::OnCandidateWindowHidden() {
-}
-
-bool DummyTextInputClient::IsEditingCommandEnabled(int command_id) {
- return false;
-}
-
-void DummyTextInputClient::ExecuteEditingCommand(int command_id) {
-}
-
-} // namespace ui
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/infolist_entry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698