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

Unified Diff: chrome/browser/iframe_uitest.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 | « chrome/browser/history/redirect_uitest.cc ('k') | chrome/browser/metrics/metrics_service_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/iframe_uitest.cc
diff --git a/chrome/browser/iframe_uitest.cc b/chrome/browser/iframe_uitest.cc
index 7e2e617e2d8a2a415a0d0050943ef5f7441b9a10..2f3a7f77c6210fc1f8eec5816da9220c5e3e6627 100644
--- a/chrome/browser/iframe_uitest.cc
+++ b/chrome/browser/iframe_uitest.cc
@@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "base/basictypes.h"
+#include "base/file_path.h"
#include "base/file_util.h"
#include "base/platform_thread.h"
#include "chrome/test/ui/ui_test.h"
@@ -10,9 +11,9 @@
class IFrameTest : public UITest {
protected:
- void NavigateAndVerifyTitle(const wchar_t* url, const wchar_t* page_title) {
- std::wstring test_file = test_data_directory_;
- file_util::AppendToPath(&test_file, url);
+ void NavigateAndVerifyTitle(const char* url, const wchar_t* page_title) {
+ FilePath test_file(FilePath::FromWStringHack(test_data_directory_));
+ test_file = test_file.AppendASCII(url);
NavigateToURL(net::FilePathToFileURL(test_file));
// The browser lazily updates the title.
@@ -27,9 +28,9 @@ class IFrameTest : public UITest {
};
TEST_F(IFrameTest, Crash) {
- NavigateAndVerifyTitle(L"iframe.html", L"iframe test");
+ NavigateAndVerifyTitle("iframe.html", L"iframe test");
}
TEST_F(IFrameTest, InEmptyFrame) {
- NavigateAndVerifyTitle(L"iframe_in_empty_frame.html", L"iframe test");
+ NavigateAndVerifyTitle("iframe_in_empty_frame.html", L"iframe test");
}
« no previous file with comments | « chrome/browser/history/redirect_uitest.cc ('k') | chrome/browser/metrics/metrics_service_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698