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

Unified Diff: webkit/tools/test_shell/test_shell_main.cc

Issue 1711024: test_shell: allow relative paths on the command line (Closed)
Patch Set: Created 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_shell_main.cc
diff --git a/webkit/tools/test_shell/test_shell_main.cc b/webkit/tools/test_shell/test_shell_main.cc
index 37c26bcff0bc9475f051cc0025b688109ed816ca..e2eb9508f458407ee710a273abaf464811fc1cb2 100644
--- a/webkit/tools/test_shell/test_shell_main.cc
+++ b/webkit/tools/test_shell/test_shell_main.cc
@@ -224,9 +224,10 @@ int main(int argc, char* argv[]) {
if (url.is_valid()) {
starting_url = url;
} else {
- // Treat as a file path
- starting_url =
- net::FilePathToFileURL(FilePath::FromWStringHack(loose_values[0]));
+ // Treat as a relative file path.
+ FilePath path = FilePath::FromWStringHack(loose_values[0]);
+ file_util::AbsolutePath(&path);
Elliot Glaysher 2010/04/29 19:54:39 Considering that you're doing this for convenience
+ starting_url = net::FilePathToFileURL(path);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698