| 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 "ui/base/ime/dummy_text_input_client.h" | 5 #include "ui/base/ime/dummy_text_input_client.h" |
| 6 #include "ui/gfx/rect.h" | 6 #include "ui/gfx/rect.h" |
| 7 | 7 |
| 8 namespace ui { | 8 namespace ui { |
| 9 | 9 |
| 10 DummyTextInputClient::DummyTextInputClient() { | 10 DummyTextInputClient::DummyTextInputClient() { |
| 11 } | 11 } |
| 12 | 12 |
| 13 DummyTextInputClient::~DummyTextInputClient() { | 13 DummyTextInputClient::~DummyTextInputClient() { |
| 14 } | 14 } |
| 15 | 15 |
| 16 void DummyTextInputClient::SetCompositionText( | 16 void DummyTextInputClient::SetCompositionText( |
| 17 const ui::CompositionText& composition) { | 17 const ui::CompositionText& composition) { |
| 18 } | 18 } |
| 19 | 19 |
| 20 void DummyTextInputClient::ConfirmCompositionText() { | 20 void DummyTextInputClient::ConfirmCompositionText() { |
| 21 } | 21 } |
| 22 | 22 |
| 23 void DummyTextInputClient::ClearCompositionText() { | 23 void DummyTextInputClient::ClearCompositionText() { |
| 24 } | 24 } |
| 25 | 25 |
| 26 void DummyTextInputClient::InsertText(const base::string16& text) { | 26 void DummyTextInputClient::InsertText(const base::string16& text) { |
| 27 } | 27 } |
| 28 | 28 |
| 29 void DummyTextInputClient::InsertChar(char16 ch, int flags) { | 29 void DummyTextInputClient::InsertChar(base::char16 ch, int flags) { |
| 30 } | 30 } |
| 31 | 31 |
| 32 gfx::NativeWindow DummyTextInputClient::GetAttachedWindow() const { | 32 gfx::NativeWindow DummyTextInputClient::GetAttachedWindow() const { |
| 33 return NULL; | 33 return NULL; |
| 34 } | 34 } |
| 35 | 35 |
| 36 ui::TextInputType DummyTextInputClient::GetTextInputType() const { | 36 ui::TextInputType DummyTextInputClient::GetTextInputType() const { |
| 37 return TEXT_INPUT_TYPE_NONE; | 37 return TEXT_INPUT_TYPE_NONE; |
| 38 } | 38 } |
| 39 | 39 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 void DummyTextInputClient::OnCandidateWindowShown() { | 102 void DummyTextInputClient::OnCandidateWindowShown() { |
| 103 } | 103 } |
| 104 | 104 |
| 105 void DummyTextInputClient::OnCandidateWindowUpdated() { | 105 void DummyTextInputClient::OnCandidateWindowUpdated() { |
| 106 } | 106 } |
| 107 | 107 |
| 108 void DummyTextInputClient::OnCandidateWindowHidden() { | 108 void DummyTextInputClient::OnCandidateWindowHidden() { |
| 109 } | 109 } |
| 110 | 110 |
| 111 } // namespace ui | 111 } // namespace ui |
| OLD | NEW |