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

Unified Diff: chrome/test/base/layout_test_http_server.cc

Issue 9820005: Move PathService's DIR_LAYOUT_TESTS from chrome to content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove indexed_db_uitest changes Created 8 years, 9 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/common/chrome_paths.cc ('k') | chrome/test/data/layout_tests/clear_dom_storage.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/base/layout_test_http_server.cc
diff --git a/chrome/test/base/layout_test_http_server.cc b/chrome/test/base/layout_test_http_server.cc
index dd84a2b1db0ae7b795262733bc4882bf3dace3b1..29eeead2ecd57511e15427447e5b1ee1cef5ffb3 100644
--- a/chrome/test/base/layout_test_http_server.cc
+++ b/chrome/test/base/layout_test_http_server.cc
@@ -9,7 +9,7 @@
#include "base/path_service.h"
#include "base/process_util.h"
#include "base/string_number_conversions.h"
-#include "chrome/common/chrome_paths.h"
+#include "content/public/common/content_paths.h"
#if defined(OS_WIN)
#include "base/win/windows_version.h"
@@ -65,7 +65,7 @@ bool LayoutTestHttpServer::Start() {
cmd_line.AppendArg("--port=" + base::IntToString(port_));
FilePath layout_tests_dir;
- if (!PathService::Get(chrome::DIR_LAYOUT_TESTS, &layout_tests_dir))
+ if (!PathService::Get(content::DIR_LAYOUT_TESTS, &layout_tests_dir))
return false;
cmd_line.AppendArgNative(FILE_PATH_LITERAL("--layout_tests_dir=") +
layout_tests_dir.value());
« no previous file with comments | « chrome/common/chrome_paths.cc ('k') | chrome/test/data/layout_tests/clear_dom_storage.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698