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

Side by Side Diff: ui/base/ime/dummy_text_input_client.cc

Issue 111373008: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/input_method_ibus_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ui/base/ime/dummy_text_input_client.h ('k') | ui/base/ime/input_method_ibus_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698