| 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 <stddef.h> | 5 #include <stddef.h> |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/cancelable_callback.h" | 10 #include "base/cancelable_callback.h" |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 #include "extensions/browser/extension_system.h" | 67 #include "extensions/browser/extension_system.h" |
| 68 #include "extensions/browser/notification_types.h" | 68 #include "extensions/browser/notification_types.h" |
| 69 #include "extensions/common/switches.h" | 69 #include "extensions/common/switches.h" |
| 70 #include "extensions/common/value_builder.h" | 70 #include "extensions/common/value_builder.h" |
| 71 #include "net/dns/mock_host_resolver.h" | 71 #include "net/dns/mock_host_resolver.h" |
| 72 #include "net/test/spawned_test_server/spawned_test_server.h" | 72 #include "net/test/spawned_test_server/spawned_test_server.h" |
| 73 #include "net/test/url_request/url_request_mock_http_job.h" | 73 #include "net/test/url_request/url_request_mock_http_job.h" |
| 74 #include "net/url_request/url_request_context.h" | 74 #include "net/url_request/url_request_context.h" |
| 75 #include "net/url_request/url_request_filter.h" | 75 #include "net/url_request/url_request_filter.h" |
| 76 #include "net/url_request/url_request_http_job.h" | 76 #include "net/url_request/url_request_http_job.h" |
| 77 #include "third_party/WebKit/public/web/WebInputEvent.h" | 77 #include "third_party/WebKit/public/platform/WebInputEvent.h" |
| 78 #include "ui/compositor/compositor_switches.h" | 78 #include "ui/compositor/compositor_switches.h" |
| 79 #include "ui/gl/gl_switches.h" | 79 #include "ui/gl/gl_switches.h" |
| 80 #include "url/gurl.h" | 80 #include "url/gurl.h" |
| 81 | 81 |
| 82 using app_modal::AppModalDialog; | 82 using app_modal::AppModalDialog; |
| 83 using app_modal::JavaScriptAppModalDialog; | 83 using app_modal::JavaScriptAppModalDialog; |
| 84 using app_modal::NativeAppModalDialog; | 84 using app_modal::NativeAppModalDialog; |
| 85 using content::BrowserThread; | 85 using content::BrowserThread; |
| 86 using content::DevToolsAgentHost; | 86 using content::DevToolsAgentHost; |
| 87 using content::NavigationController; | 87 using content::NavigationController; |
| (...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1543 | 1543 |
| 1544 DevToolsWindowTesting::CloseDevToolsWindowSync(window); | 1544 DevToolsWindowTesting::CloseDevToolsWindowSync(window); |
| 1545 content::WebUIControllerFactory::UnregisterFactoryForTesting(&test_factory); | 1545 content::WebUIControllerFactory::UnregisterFactoryForTesting(&test_factory); |
| 1546 } | 1546 } |
| 1547 | 1547 |
| 1548 // Tests scripts panel showing. | 1548 // Tests scripts panel showing. |
| 1549 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestDevToolsSharedWorker) { | 1549 IN_PROC_BROWSER_TEST_F(DevToolsSanityTest, TestDevToolsSharedWorker) { |
| 1550 RunTest("testDevToolsSharedWorker", url::kAboutBlankURL); | 1550 RunTest("testDevToolsSharedWorker", url::kAboutBlankURL); |
| 1551 } | 1551 } |
| 1552 | 1552 |
| OLD | NEW |