OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "apps/ui/native_app_window.h" | 5 #include "apps/ui/native_app_window.h" |
6 #include "base/path_service.h" | 6 #include "base/path_service.h" |
7 #include "base/strings/stringprintf.h" | 7 #include "base/strings/stringprintf.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/app/chrome_command_ids.h" | 9 #include "chrome/app/chrome_command_ids.h" |
10 #include "chrome/browser/apps/app_browsertest_util.h" | 10 #include "chrome/browser/apps/app_browsertest_util.h" |
(...skipping 13 matching lines...) Expand all Loading... |
24 #include "content/public/browser/interstitial_page.h" | 24 #include "content/public/browser/interstitial_page.h" |
25 #include "content/public/browser/interstitial_page_delegate.h" | 25 #include "content/public/browser/interstitial_page_delegate.h" |
26 #include "content/public/browser/notification_service.h" | 26 #include "content/public/browser/notification_service.h" |
27 #include "content/public/browser/render_process_host.h" | 27 #include "content/public/browser/render_process_host.h" |
28 #include "content/public/browser/web_contents_delegate.h" | 28 #include "content/public/browser/web_contents_delegate.h" |
29 #include "content/public/common/content_switches.h" | 29 #include "content/public/common/content_switches.h" |
30 #include "content/public/test/browser_test_utils.h" | 30 #include "content/public/test/browser_test_utils.h" |
31 #include "content/public/test/fake_speech_recognition_manager.h" | 31 #include "content/public/test/fake_speech_recognition_manager.h" |
32 #include "extensions/common/extension.h" | 32 #include "extensions/common/extension.h" |
33 #include "extensions/common/extensions_client.h" | 33 #include "extensions/common/extensions_client.h" |
| 34 #include "media/base/media_switches.h" |
34 #include "net/test/embedded_test_server/embedded_test_server.h" | 35 #include "net/test/embedded_test_server/embedded_test_server.h" |
35 #include "net/test/embedded_test_server/http_request.h" | 36 #include "net/test/embedded_test_server/http_request.h" |
36 #include "net/test/embedded_test_server/http_response.h" | 37 #include "net/test/embedded_test_server/http_response.h" |
37 #include "ui/gl/gl_switches.h" | 38 #include "ui/gl/gl_switches.h" |
38 | 39 |
39 #if defined(OS_CHROMEOS) | 40 #if defined(OS_CHROMEOS) |
40 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 41 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
41 #include "chrome/browser/chromeos/accessibility/speech_monitor.h" | 42 #include "chrome/browser/chromeos/accessibility/speech_monitor.h" |
42 #endif | 43 #endif |
43 | 44 |
(...skipping 1969 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2013 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { | 2014 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { |
2014 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 2015 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
2015 } | 2016 } |
2016 | 2017 |
2017 // <webview> screenshot capture fails with ubercomp. | 2018 // <webview> screenshot capture fails with ubercomp. |
2018 // See http://crbug.com/327035. | 2019 // See http://crbug.com/327035. |
2019 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, | 2020 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, |
2020 DISABLED_Shim_ScreenshotCapture) { | 2021 DISABLED_Shim_ScreenshotCapture) { |
2021 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); | 2022 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); |
2022 } | 2023 } |
OLD | NEW |