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

Unified Diff: chrome/browser/ui/webui/options/chromeos/pointer_handler.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/ui/webui/options/chromeos/pointer_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc b/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
index 8845d6597da4a3cb077e03f524ae8e6a7f8e9e68..a4ee792b43f7e25b1f2e379c038fcf61eaa9ba36 100644
--- a/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/pointer_handler.cc
@@ -79,7 +79,7 @@ void PointerHandler::UpdateTitle() {
} else {
label = has_mouse_ ? "pointerOverlayTitleMouseOnly" : "";
}
- base::StringValue val(label);
+ base::Value val(label);
web_ui()->CallJavascriptFunctionUnsafe("PointerOverlay.setTitle", val);
}

Powered by Google App Engine
This is Rietveld 408576698