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

Unified Diff: webkit/tools/test_shell/test_shell.cc

Issue 5631002: wstrings: convert CppVariant and CppBoundClass to not use wstring (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 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: webkit/tools/test_shell/test_shell.cc
diff --git a/webkit/tools/test_shell/test_shell.cc b/webkit/tools/test_shell/test_shell.cc
index e5d4461c5af39570d0db07120dd8c44e96411cee..ffaba74427877715707647b79dcb20810c125b15 100644
--- a/webkit/tools/test_shell/test_shell.cc
+++ b/webkit/tools/test_shell/test_shell.cc
@@ -555,11 +555,11 @@ void TestShell::BindJSObjectsToWindow(WebFrame* frame) {
// Only bind the test classes if we're running tests.
if (layout_test_mode_) {
accessibility_controller_->BindToJavascript(
- frame, L"accessibilityController");
- layout_test_controller_->BindToJavascript(frame, L"layoutTestController");
- event_sending_controller_->BindToJavascript(frame, L"eventSender");
- plain_text_controller_->BindToJavascript(frame, L"plainText");
- text_input_controller_->BindToJavascript(frame, L"textInputController");
+ frame, "accessibilityController");
+ layout_test_controller_->BindToJavascript(frame, "layoutTestController");
+ event_sending_controller_->BindToJavascript(frame, "eventSender");
+ plain_text_controller_->BindToJavascript(frame, "plainText");
+ text_input_controller_->BindToJavascript(frame, "textInputController");
}
}

Powered by Google App Engine
This is Rietveld 408576698