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

Unified Diff: chrome/browser/chromeos/extensions/input_method_api.cc

Issue 2664753002: Remove base::StringValue (Closed)
Patch Set: Rebase Created 3 years, 9 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
Index: chrome/browser/chromeos/extensions/input_method_api.cc
diff --git a/chrome/browser/chromeos/extensions/input_method_api.cc b/chrome/browser/chromeos/extensions/input_method_api.cc
index 567a27178f32c96d083697c78e73b747ae2af9a4..610a0ca7132d20e7cfd261bd77756419785b65c9 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -98,7 +98,7 @@ InputMethodPrivateGetCurrentInputMethodFunction::Run() {
#else
chromeos::input_method::InputMethodManager* manager =
chromeos::input_method::InputMethodManager::Get();
- return RespondNow(OneArgument(base::MakeUnique<base::StringValue>(
+ return RespondNow(OneArgument(base::MakeUnique<base::Value>(
manager->GetActiveIMEState()->GetCurrentInputMethod().id())));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698