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

Unified Diff: chrome/browser/sanity_uitest.cc

Issue 5967003: Refactor UITestBase/ProxyLauncher. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add POD struct to hold some launcher variables. Created 9 years, 11 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
Index: chrome/browser/sanity_uitest.cc
diff --git a/chrome/browser/sanity_uitest.cc b/chrome/browser/sanity_uitest.cc
index cecbd71c82a500413382cca53954bee42a7486e0..cd02db27cbeb20ef1a03fb0d5da650620a80dc34 100644
--- a/chrome/browser/sanity_uitest.cc
+++ b/chrome/browser/sanity_uitest.cc
@@ -17,7 +17,7 @@ class GoogleTest : public UITest {
GoogleTest() : UITest() {
FilePath test_file =
test_data_directory_.AppendASCII("google").AppendASCII("google.html");
- homepage_ = GURL(net::FilePathToFileURL(test_file)).spec();
+ set_homepage(GURL(net::FilePathToFileURL(test_file)).spec());
}
};
@@ -34,7 +34,7 @@ class ColumnLayout : public UITest {
protected:
ColumnLayout() : UITest() {
FilePath test_file = test_data_directory_.AppendASCII("columns.html");
- homepage_ = GURL(net::FilePathToFileURL(test_file)).spec();
+ set_homepage(GURL(net::FilePathToFileURL(test_file)).spec());
}
};

Powered by Google App Engine
This is Rietveld 408576698