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_dll_resource.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" | 9 #include "chrome/common/chrome_switches.h" |
10 #include "chrome/common/url_constants.h" | 10 #include "chrome/common/url_constants.h" |
11 #include "chrome/test/automation/browser_proxy.h" | 11 #include "chrome/test/automation/browser_proxy.h" |
12 #include "chrome/test/automation/tab_proxy.h" | 12 #include "chrome/test/automation/tab_proxy.h" |
13 #include "chrome/test/ui/ui_layout_test.h" | 13 #include "chrome/test/ui/ui_layout_test.h" |
14 #include "chrome/test/ui_test_utils.h" | 14 #include "chrome/test/ui_test_utils.h" |
15 #include "net/test/test_server.h" | 15 #include "net/test/test_server.h" |
16 | 16 |
17 namespace { | 17 namespace { |
(...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
711 RunWorkerFileSystemLayoutTest("simple-persistent-sync.html"); | 711 RunWorkerFileSystemLayoutTest("simple-persistent-sync.html"); |
712 } | 712 } |
713 | 713 |
714 TEST_F(WorkerTest, DISABLED_WorkerFileSystemAsyncOperationsTest) { | 714 TEST_F(WorkerTest, DISABLED_WorkerFileSystemAsyncOperationsTest) { |
715 RunWorkerFileSystemLayoutTest("async-operations.html"); | 715 RunWorkerFileSystemLayoutTest("async-operations.html"); |
716 } | 716 } |
717 | 717 |
718 TEST_F(WorkerTest, DISABLED_WorkerFileSystemSyncOperationsTest) { | 718 TEST_F(WorkerTest, DISABLED_WorkerFileSystemSyncOperationsTest) { |
719 RunWorkerFileSystemLayoutTest("sync-operations.html"); | 719 RunWorkerFileSystemLayoutTest("sync-operations.html"); |
720 } | 720 } |
OLD | NEW |