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

Unified Diff: ui/base/ime/chromeos/mock_ime_engine_handler.cc

Issue 1590863002: Move the local struct definitions off ui/base/ime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/chromeos/mock_ime_engine_handler.h ('k') | ui/base/ime/ime_engine_handler_interface.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/chromeos/mock_ime_engine_handler.cc
diff --git a/ui/base/ime/chromeos/mock_ime_engine_handler.cc b/ui/base/ime/chromeos/mock_ime_engine_handler.cc
index 321651881ef2e9cfb190ae2502291dce42034ed7..e920e37e0d6eafc1df43139b0fb8bc770f165d2c 100644
--- a/ui/base/ime/chromeos/mock_ime_engine_handler.cc
+++ b/ui/base/ime/chromeos/mock_ime_engine_handler.cc
@@ -76,17 +76,6 @@ void MockIMEEngineHandler::SetCompositionBounds(
const std::vector<gfx::Rect>& bounds) {
}
-bool MockIMEEngineHandler::SetComposition(
- int context_id,
- const char* text,
- int selection_start,
- int selection_end,
- int cursor,
- const std::vector<SegmentInfo>& segments,
- std::string* error) {
- return false;
-}
-
bool MockIMEEngineHandler::ClearComposition(int context_id,
std::string* error) {
return false;
@@ -98,12 +87,6 @@ bool MockIMEEngineHandler::CommitText(int context_id,
return false;
}
-bool MockIMEEngineHandler::SendKeyEvents(
- int context_id,
- const std::vector<KeyboardEvent>& events) {
- return false;
-}
-
bool MockIMEEngineHandler::IsActive() const {
return false;
}
@@ -119,35 +102,15 @@ bool MockIMEEngineHandler::DeleteSurroundingText(int context_id,
return false;
}
-const MockIMEEngineHandler::CandidateWindowProperty&
-MockIMEEngineHandler::GetCandidateWindowProperty() const {
- return candidate_window_property_;
-}
-
bool MockIMEEngineHandler::SetCandidateWindowVisible(bool visible,
std::string* error) {
return false;
}
-bool MockIMEEngineHandler::SetCandidates(
- int context_id,
- const std::vector<Candidate>& candidates,
- std::string* error) {
- return false;
-}
-
bool MockIMEEngineHandler::SetCursorPosition(int context_id,
int candidate_id,
std::string* error) {
return false;
}
-bool MockIMEEngineHandler::SetMenuItems(const std::vector<MenuItem>& items) {
- return false;
-}
-
-bool MockIMEEngineHandler::UpdateMenuItems(const std::vector<MenuItem>& items) {
- return false;
-}
-
} // namespace chromeos
« no previous file with comments | « ui/base/ime/chromeos/mock_ime_engine_handler.h ('k') | ui/base/ime/ime_engine_handler_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698