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

Unified Diff: webkit/glue/context_menu_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/chrome_client_impl.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/context_menu_unittest.cc
diff --git a/webkit/glue/context_menu_unittest.cc b/webkit/glue/context_menu_unittest.cc
index b7ff8edaa277b830d7220ca8f2cf12a86b84b236..8e62c2c057b05a717eebef93c6934c01962c4460 100644
--- a/webkit/glue/context_menu_unittest.cc
+++ b/webkit/glue/context_menu_unittest.cc
@@ -7,6 +7,7 @@
#include <vector>
+#include "base/file_path.h"
#include "base/file_util.h"
#include "base/message_loop.h"
#include "webkit/glue/webframe.h"
@@ -24,12 +25,12 @@ class ContextMenuCapturing : public TestShellTest {
TestShellTest::SetUp();
iframes_data_dir_ = data_dir_;
- file_util::AppendToPath(&iframes_data_dir_, L"test_shell");
- file_util::AppendToPath(&iframes_data_dir_, L"iframes");
+ iframes_data_dir_ = iframes_data_dir_.AppendASCII("test_shell");
+ iframes_data_dir_ = iframes_data_dir_.AppendASCII("iframes");
ASSERT_TRUE(file_util::PathExists(iframes_data_dir_));
}
- std::wstring iframes_data_dir_;
+ FilePath iframes_data_dir_;
};
@@ -40,7 +41,7 @@ TEST_F(ContextMenuCapturing, ContextMenuCapturing) {
test_delegate->clear_captured_context_menu_events();
EXPECT_EQ(0U, test_delegate->captured_context_menu_events().size());
- std::wstring test_url = GetTestURL(iframes_data_dir_, L"testiframe.html");
+ std::wstring test_url = GetTestURL(iframes_data_dir_, "testiframe.html");
test_shell_->LoadURL(test_url.c_str());
test_shell_->WaitTestFinished();
« no previous file with comments | « webkit/glue/chrome_client_impl.cc ('k') | webkit/glue/dom_operations_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698