summaryrefslogtreecommitdiffstats
path: root/chrome/browser/in_process_webkit
diff options
context:
space:
mode:
authordpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-03 00:49:55 +0000
committerdpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-03 00:49:55 +0000
commitf6b551d4bbde5c66782225ecc8c9aec81c974d07 (patch)
treeb0878abe8d411198018bf0853f8a1d69a6a141cb /chrome/browser/in_process_webkit
parente4bb8217d6597b314ad7b628dba5584b7a794874 (diff)
downloadchromium_src-f6b551d4bbde5c66782225ecc8c9aec81c974d07.zip
chromium_src-f6b551d4bbde5c66782225ecc8c9aec81c974d07.tar.gz
chromium_src-f6b551d4bbde5c66782225ecc8c9aec81c974d07.tar.bz2
Change ui_tests to pull the directories it needs from the upstream webkit
tree directly rather than relying on webkit/data/layout_tests for the baselines. This requires us to change a few spots in the source code because the directory naming conventions for platform-specific baselines is different upstream (it's platform/chromium-win/foo rather than platform/chromium-win/LayoutTests/foo). Once this test lands we can (in theory) remove the downstream layout test baselines. BUG=none TEST=none R=dimich@chromium.org Review URL: http://codereview.chromium.org/1547009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43557 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/in_process_webkit')
-rw-r--r--chrome/browser/in_process_webkit/dom_storage_uitest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/in_process_webkit/dom_storage_uitest.cc b/chrome/browser/in_process_webkit/dom_storage_uitest.cc
index 1618d50..709c75a 100644
--- a/chrome/browser/in_process_webkit/dom_storage_uitest.cc
+++ b/chrome/browser/in_process_webkit/dom_storage_uitest.cc
@@ -42,7 +42,7 @@ class DOMStorageTest : public UILayoutTest {
protected:
DOMStorageTest()
: UILayoutTest(),
- test_dir_(FilePath().AppendASCII("LayoutTests").
+ test_dir_(FilePath().
AppendASCII("storage").AppendASCII("domstorage")) {
}
@@ -57,7 +57,7 @@ class DOMStorageTest : public UILayoutTest {
// Add those to the list to be copied.
void AddJSTestResources() {
// Add other paths our tests require.
- FilePath js_dir = FilePath().AppendASCII("LayoutTests").
+ FilePath js_dir = FilePath().
AppendASCII("fast").AppendASCII("js");
AddResourceForLayoutTest(js_dir, FilePath().AppendASCII("resources"));
}