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

Unified Diff: content/common/content_paths.cc

Issue 16268011: Remove InProcessBrowserLayoutTest, since we now run layout tests in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 7 years, 6 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 | « build/android/pylib/gtest/filter/content_browsertests_disabled ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/content_paths.cc
diff --git a/content/common/content_paths.cc b/content/common/content_paths.cc
index e6e19054efbc47e68833b438af5207a28c0959d9..0c856367ffef256c5e867e30cc4e930b1580fffe 100644
--- a/content/common/content_paths.cc
+++ b/content/common/content_paths.cc
@@ -37,24 +37,6 @@ bool PathProvider(int key, base::FilePath* result) {
return PathService::Get(base::DIR_MODULE, result);
#endif
}
- case DIR_LAYOUT_TESTS: {
- base::FilePath cur;
- if (!PathService::Get(DIR_TEST_DATA, &cur))
- return false;
- cur = cur.Append(FILE_PATH_LITERAL("layout_tests"));
- cur = cur.Append(FILE_PATH_LITERAL("LayoutTests"));
- if (file_util::DirectoryExists(cur)) {
- *result = cur;
- return true;
- }
- if (!PathService::Get(base::DIR_SOURCE_ROOT, &cur))
- return false;
- cur = cur.Append(FILE_PATH_LITERAL("third_party"));
- cur = cur.Append(FILE_PATH_LITERAL("WebKit"));
- cur = cur.Append(FILE_PATH_LITERAL("LayoutTests"));
- *result = cur;
- return true;
- }
default:
return false;
}
« no previous file with comments | « build/android/pylib/gtest/filter/content_browsertests_disabled ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698