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

Unified Diff: chrome/browser/extensions/extension_input_ime_api.cc

Issue 8558013: Add API tests for all input.ime functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review fixes Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_input_ime_api.cc
diff --git a/chrome/browser/extensions/extension_input_ime_api.cc b/chrome/browser/extensions/extension_input_ime_api.cc
index 7e77af9d5da4ab0eeca5c393f9e221da37f8004d..febef50e7bae4a5d59d61619f99349baf302a764 100644
--- a/chrome/browser/extensions/extension_input_ime_api.cc
+++ b/chrome/browser/extensions/extension_input_ime_api.cc
@@ -779,9 +779,9 @@ bool SetCursorPositionFunction::RunImpl() {
int candidate_id;
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kContextIdKey,
- &context_id));
+ &context_id));
EXTENSION_FUNCTION_VALIDATE(args->GetInteger(keys::kCandidateIdKey,
- &candidate_id));
+ &candidate_id));
if (engine->SetCursorPosition(context_id, candidate_id, &error_)) {
result_.reset(Value::CreateBooleanValue(true));
« no previous file with comments | « chrome/browser/extensions/extension_input_ime_api.h ('k') | chrome/common/extensions/api/extension_api.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698