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

Side by Side Diff: ui/base/ime/chromeos/mock_ime_input_context_handler.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 unified diff | Download patch
« no previous file with comments | « ui/base/ime/chromeos/mock_ime_input_context_handler.h ('k') | ui/base/ime/composition_text.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ui/base/ime/chromeos/mock_ime_input_context_handler.h"
6
7 #include "chromeos/ime/composition_text.h"
8
9 namespace chromeos {
10
11 MockIMEInputContextHandler::MockIMEInputContextHandler()
12 : commit_text_call_count_(0),
13 update_preedit_text_call_count_(0),
14 delete_surrounding_text_call_count_(0) {
15 }
16
17 MockIMEInputContextHandler::~MockIMEInputContextHandler() {
18 }
19
20 void MockIMEInputContextHandler::CommitText(const std::string& text) {
21 ++commit_text_call_count_;
22 last_commit_text_ = text;
23 }
24
25 void MockIMEInputContextHandler::UpdateCompositionText(
26 const CompositionText& text,
27 uint32 cursor_pos,
28 bool visible) {
29 ++update_preedit_text_call_count_;
30 last_update_composition_arg_.composition_text.CopyFrom(text);
31 last_update_composition_arg_.cursor_pos = cursor_pos;
32 last_update_composition_arg_.is_visible = visible;
33 }
34
35 void MockIMEInputContextHandler::DeleteSurroundingText(int32 offset,
36 uint32 length) {
37 ++delete_surrounding_text_call_count_;
38 last_delete_surrounding_text_arg_.offset = offset;
39 last_delete_surrounding_text_arg_.length = length;
40 }
41
42 void MockIMEInputContextHandler::Reset() {
43 commit_text_call_count_ = 0;
44 update_preedit_text_call_count_ = 0;
45 delete_surrounding_text_call_count_ = 0;
46 last_commit_text_.clear();
47 }
48
49 } // namespace chromeos
OLDNEW
« no previous file with comments | « ui/base/ime/chromeos/mock_ime_input_context_handler.h ('k') | ui/base/ime/composition_text.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698