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

Unified Diff: webkit/glue/cpp_bound_class_unittest.cc

Issue 200054: Hook up WebFrameClient, replacing many WebViewDelegate methods.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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
« no previous file with comments | « webkit/glue/context_menu_unittest.cc ('k') | webkit/glue/dom_operations_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/cpp_bound_class_unittest.cc
===================================================================
--- webkit/glue/cpp_bound_class_unittest.cc (revision 25715)
+++ webkit/glue/cpp_bound_class_unittest.cc (working copy)
@@ -70,8 +70,8 @@
// This is a public interface to TestShell's protected method, so it
// can be called by our CreateEmptyWindow.
- bool PublicInitialize(const std::wstring& startingURL) {
- return Initialize(startingURL);
+ bool PublicInitialize(const std::string& starting_url) {
+ return Initialize(GURL(starting_url));
}
CppBindingExampleWithOptionalFallback example_bound_class_;
@@ -84,7 +84,7 @@
virtual void CreateEmptyWindow() {
ExampleTestShell* host = new ExampleTestShell(useFallback());
ASSERT_TRUE(host != NULL);
- bool rv = host->PublicInitialize(L"about:blank");
+ bool rv = host->PublicInitialize("about:blank");
if (rv) {
test_shell_ = host;
TestShell::windowList()->push_back(host->mainWnd());
« no previous file with comments | « webkit/glue/context_menu_unittest.cc ('k') | webkit/glue/dom_operations_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698