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

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

Issue 106433007: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years 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 675606172bd2fdb42affcc3e59e0e3f8adb0e1d6..ec7cc4dcafd4175512f1afda6e09f06e3ba45400 100644
--- a/chrome/browser/chromeos/extensions/input_method_api.cc
+++ b/chrome/browser/chromeos/extensions/input_method_api.cc
@@ -37,7 +37,7 @@ bool GetInputMethodFunction::RunImpl() {
chromeos::input_method::InputMethodManager::Get();
const std::string input_method = InputMethodAPI::GetInputMethodForXkb(
manager->GetCurrentInputMethod().id());
- SetResult(Value::CreateStringValue(input_method));
+ SetResult(base::Value::CreateStringValue(input_method));
return true;
#endif
}

Powered by Google App Engine
This is Rietveld 408576698