| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/file_path.h" | 5 #include "base/file_path.h" |
| 6 #include "base/string_util.h" | 6 #include "base/string_util.h" |
| 7 #include "chrome/app/chrome_command_ids.h" | 7 #include "chrome/app/chrome_command_ids.h" |
| 8 #include "chrome/browser/worker_host/worker_service.h" | 8 #include "chrome/browser/worker_host/worker_service.h" |
| 9 #include "chrome/common/chrome_switches.h" | |
| 10 #include "chrome/common/url_constants.h" | 9 #include "chrome/common/url_constants.h" |
| 11 #include "chrome/test/automation/browser_proxy.h" | 10 #include "chrome/test/automation/browser_proxy.h" |
| 12 #include "chrome/test/automation/tab_proxy.h" | 11 #include "chrome/test/automation/tab_proxy.h" |
| 13 #include "chrome/test/ui/ui_layout_test.h" | 12 #include "chrome/test/ui/ui_layout_test.h" |
| 14 #include "chrome/test/ui_test_utils.h" | 13 #include "chrome/test/ui_test_utils.h" |
| 15 #include "net/test/test_server.h" | 14 #include "net/test/test_server.h" |
| 16 | 15 |
| 17 namespace { | 16 namespace { |
| 18 | 17 |
| 19 const char kTestCompleteCookie[] = "status"; | 18 const char kTestCompleteCookie[] = "status"; |
| (...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 RunWorkerFileSystemLayoutTest("simple-persistent-sync.html"); | 707 RunWorkerFileSystemLayoutTest("simple-persistent-sync.html"); |
| 709 } | 708 } |
| 710 | 709 |
| 711 TEST_F(WorkerTest, DISABLED_WorkerFileSystemAsyncOperationsTest) { | 710 TEST_F(WorkerTest, DISABLED_WorkerFileSystemAsyncOperationsTest) { |
| 712 RunWorkerFileSystemLayoutTest("async-operations.html"); | 711 RunWorkerFileSystemLayoutTest("async-operations.html"); |
| 713 } | 712 } |
| 714 | 713 |
| 715 TEST_F(WorkerTest, DISABLED_WorkerFileSystemSyncOperationsTest) { | 714 TEST_F(WorkerTest, DISABLED_WorkerFileSystemSyncOperationsTest) { |
| 716 RunWorkerFileSystemLayoutTest("sync-operations.html"); | 715 RunWorkerFileSystemLayoutTest("sync-operations.html"); |
| 717 } | 716 } |
| OLD | NEW |