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

Unified Diff: webkit/glue/iframe_redirect_unittest.cc

Issue 63011: Monster FilePath patch! (Closed)
Patch Set: sync with trunk Created 11 years, 8 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/dom_serializer_unittest.cc ('k') | webkit/glue/plugins/plugin_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/iframe_redirect_unittest.cc
diff --git a/webkit/glue/iframe_redirect_unittest.cc b/webkit/glue/iframe_redirect_unittest.cc
index 37be9a513d77005c5c0506ec80666462dda20b16..dc280e2dde9f3ac3335c71e9ff2b796ac3f0d839 100644
--- a/webkit/glue/iframe_redirect_unittest.cc
+++ b/webkit/glue/iframe_redirect_unittest.cc
@@ -21,13 +21,12 @@ typedef TestShellTest IFrameRedirectTest;
// Tests that loading a page in an iframe from javascript results in
// a redirect from about:blank.
TEST_F(IFrameRedirectTest, Test) {
- std::wstring iframes_data_dir_ = data_dir_;
-
- file_util::AppendToPath(&iframes_data_dir_, L"test_shell");
- file_util::AppendToPath(&iframes_data_dir_, L"iframe_redirect");
+ FilePath iframes_data_dir_ = data_dir_;
+ iframes_data_dir_ = iframes_data_dir_.AppendASCII("test_shell");
+ iframes_data_dir_ = iframes_data_dir_.AppendASCII("iframe_redirect");
ASSERT_TRUE(file_util::PathExists(iframes_data_dir_));
- std::wstring test_url = GetTestURL(iframes_data_dir_, L"main.html");
+ std::wstring test_url = GetTestURL(iframes_data_dir_, "main.html");
test_shell_->LoadURL(test_url.c_str());
test_shell_->WaitTestFinished();
« no previous file with comments | « webkit/glue/dom_serializer_unittest.cc ('k') | webkit/glue/plugins/plugin_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698