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" | |
35 #include "net/test/embedded_test_server/embedded_test_server.h" | 34 #include "net/test/embedded_test_server/embedded_test_server.h" |
36 #include "net/test/embedded_test_server/http_request.h" | 35 #include "net/test/embedded_test_server/http_request.h" |
37 #include "net/test/embedded_test_server/http_response.h" | 36 #include "net/test/embedded_test_server/http_response.h" |
38 #include "ui/gl/gl_switches.h" | 37 #include "ui/gl/gl_switches.h" |
39 | 38 |
40 #if defined(OS_CHROMEOS) | 39 #if defined(OS_CHROMEOS) |
41 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" | 40 #include "chrome/browser/chromeos/accessibility/accessibility_manager.h" |
42 #include "chrome/browser/chromeos/accessibility/speech_monitor.h" | 41 #include "chrome/browser/chromeos/accessibility/speech_monitor.h" |
43 #endif | 42 #endif |
44 | 43 |
(...skipping 2034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2079 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { | 2078 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { |
2080 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 2079 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
2081 } | 2080 } |
2082 | 2081 |
2083 // <webview> screenshot capture fails with ubercomp. | 2082 // <webview> screenshot capture fails with ubercomp. |
2084 // See http://crbug.com/327035. | 2083 // See http://crbug.com/327035. |
2085 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, | 2084 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, |
2086 DISABLED_Shim_ScreenshotCapture) { | 2085 DISABLED_Shim_ScreenshotCapture) { |
2087 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); | 2086 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); |
2088 } | 2087 } |
OLD | NEW |