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

Side by Side Diff: chrome/browser/chromeos/input_method/mock_input_method_engine.cc

Issue 641243005: Support a private event - inputMethodPrivate.onCompositionBoundsChanged so that component IME exten… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits + unit test Created 6 years, 1 month 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "chrome/browser/chromeos/input_method/mock_input_method_engine.h" 5 #include "chrome/browser/chromeos/input_method/mock_input_method_engine.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 namespace chromeos { 9 namespace chromeos {
10 10
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 } 122 }
123 123
124 void MockInputMethodEngine::CandidateClicked(uint32 index) { 124 void MockInputMethodEngine::CandidateClicked(uint32 index) {
125 } 125 }
126 126
127 void MockInputMethodEngine::SetSurroundingText(const std::string& text, 127 void MockInputMethodEngine::SetSurroundingText(const std::string& text,
128 uint32 cursor_pos, 128 uint32 cursor_pos,
129 uint32 anchor_pos) { 129 uint32 anchor_pos) {
130 } 130 }
131 131
132 void MockInputMethodEngine::SetCompositionBounds(const gfx::Rect& bounds) {
133 }
134
132 } // namespace chromeos 135 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698