| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/bind.h" | 5 #include "base/bind.h" |
| 6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "base/test/thread_test_helper.h" | 9 #include "base/test/thread_test_helper.h" |
| 10 #include "content/browser/web_contents/web_contents_impl.h" | 10 #include "content/browser/web_contents/web_contents_impl.h" |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 } | 101 } |
| 102 | 102 |
| 103 IN_PROC_BROWSER_TEST_F(FileSystemBrowserTestWithLowQuota, QuotaTest) { | 103 IN_PROC_BROWSER_TEST_F(FileSystemBrowserTestWithLowQuota, QuotaTest) { |
| 104 SimpleTest(GetTestUrl("fileapi", "quota_test.html")); | 104 SimpleTest(GetTestUrl("fileapi", "quota_test.html")); |
| 105 } | 105 } |
| 106 | 106 |
| 107 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, AsyncOperations) { | 107 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, AsyncOperations) { |
| 108 RunLayoutTest("async-operations.html"); | 108 RunLayoutTest("async-operations.html"); |
| 109 } | 109 } |
| 110 | 110 |
| 111 #if defined(OS_WIN) | 111 // crbug.com/172787 for disabling on Windows (flaky), crbug.com/173079 for |
| 112 // Flaky timeouts on windows. http://crbug.com/172787 | 112 // temporary disabling everywhere. |
| 113 # define MAYBE_CrossFilesystemOp DISABLED_CrossFilesystemOp | 113 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, DISABLED_CrossFilesystemOp) { |
| 114 #else | |
| 115 # define MAYBE_CrossFilesystemOp CrossFilesystemOp | |
| 116 #endif | |
| 117 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, MAYBE_CrossFilesystemOp) { | |
| 118 RunLayoutTest("cross-filesystem-op.html"); | 114 RunLayoutTest("cross-filesystem-op.html"); |
| 119 } | 115 } |
| 120 | 116 |
| 121 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, DirectoryEntryToUri) { | 117 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, DirectoryEntryToUri) { |
| 122 RunLayoutTest("directory-entry-to-uri.html"); | 118 RunLayoutTest("directory-entry-to-uri.html"); |
| 123 } | 119 } |
| 124 | 120 |
| 125 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, EntryPointsMissingArguments) { | 121 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, EntryPointsMissingArguments) { |
| 126 RunLayoutTest("entry-points-missing-arguments.html"); | 122 RunLayoutTest("entry-points-missing-arguments.html"); |
| 127 } | 123 } |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 | 351 |
| 356 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, WorkersSimpleTemporarySync) { | 352 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, WorkersSimpleTemporarySync) { |
| 357 RunLayoutTest("workers/simple-temporary-sync.html"); | 353 RunLayoutTest("workers/simple-temporary-sync.html"); |
| 358 } | 354 } |
| 359 | 355 |
| 360 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, WorkersSyncOperations) { | 356 IN_PROC_BROWSER_TEST_F(FileSystemLayoutTest, WorkersSyncOperations) { |
| 361 RunLayoutTest("workers/sync-operations.html"); | 357 RunLayoutTest("workers/sync-operations.html"); |
| 362 } | 358 } |
| 363 | 359 |
| 364 } // namespace content | 360 } // namespace content |
| OLD | NEW |