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

Unified Diff: chrome/browser/images_uitest.cc

Issue 18248: CommandLine API rework (Closed)
Patch Set: fixes Created 11 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
« no previous file with comments | « chrome/browser/first_run.cc ('k') | chrome/browser/locale_tests_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/images_uitest.cc
diff --git a/chrome/browser/images_uitest.cc b/chrome/browser/images_uitest.cc
index cfe09386c4261e311e2b99ccddcf60a2e59b5feb..0b5a4be3c50225db49ff54eb1e62054a4b854785 100644
--- a/chrome/browser/images_uitest.cc
+++ b/chrome/browser/images_uitest.cc
@@ -9,8 +9,10 @@
class ImagesTest : public UITest {
protected:
ImagesTest() : UITest() {
- launch_arguments_ = test_data_directory_;
- file_util::AppendToPath(&launch_arguments_, L"animated-gifs.html");
+ std::wstring path = test_data_directory_;
+ file_util::AppendToPath(&path, L"animated-gifs.html");
+ launch_arguments_ = CommandLine(L"");
+ launch_arguments_.AppendLooseValue(path);
}
};
« no previous file with comments | « chrome/browser/first_run.cc ('k') | chrome/browser/locale_tests_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698