| 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 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1023 } | 1023 } |
| 1024 | 1024 |
| 1025 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestNewWindowNoReferrerLink) { | 1025 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestNewWindowNoReferrerLink) { |
| 1026 TestHelper("testNewWindowNoReferrerLink", "web_view/shim", NEEDS_TEST_SERVER); | 1026 TestHelper("testNewWindowNoReferrerLink", "web_view/shim", NEEDS_TEST_SERVER); |
| 1027 } | 1027 } |
| 1028 | 1028 |
| 1029 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestContentLoadEvent) { | 1029 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestContentLoadEvent) { |
| 1030 TestHelper("testContentLoadEvent", "web_view/shim", NO_TEST_SERVER); | 1030 TestHelper("testContentLoadEvent", "web_view/shim", NO_TEST_SERVER); |
| 1031 } | 1031 } |
| 1032 | 1032 |
| 1033 // http://crbug.com/326330 | 1033 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestDeclarativeWebRequestAPI) { |
| 1034 IN_PROC_BROWSER_TEST_F(WebViewTest, | |
| 1035 Shim_TestDeclarativeWebRequestAPI) { | |
| 1036 TestHelper("testDeclarativeWebRequestAPI", | 1034 TestHelper("testDeclarativeWebRequestAPI", |
| 1037 "web_view/shim", | 1035 "web_view/shim", |
| 1038 NEEDS_TEST_SERVER); | 1036 NEEDS_TEST_SERVER); |
| 1039 } | 1037 } |
| 1040 | 1038 |
| 1041 IN_PROC_BROWSER_TEST_F(WebViewTest, | 1039 IN_PROC_BROWSER_TEST_F(WebViewTest, |
| 1042 Shim_TestDeclarativeWebRequestAPISendMessage) { | 1040 Shim_TestDeclarativeWebRequestAPISendMessage) { |
| 1043 TestHelper("testDeclarativeWebRequestAPISendMessage", | 1041 TestHelper("testDeclarativeWebRequestAPISendMessage", |
| 1044 "web_view/shim", | 1042 "web_view/shim", |
| 1045 NEEDS_TEST_SERVER); | 1043 NEEDS_TEST_SERVER); |
| (...skipping 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2245 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { | 2243 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { |
| 2246 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 2244 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
| 2247 } | 2245 } |
| 2248 | 2246 |
| 2249 // <webview> screenshot capture fails with ubercomp. | 2247 // <webview> screenshot capture fails with ubercomp. |
| 2250 // See http://crbug.com/327035. | 2248 // See http://crbug.com/327035. |
| 2251 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, | 2249 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, |
| 2252 DISABLED_Shim_ScreenshotCapture) { | 2250 DISABLED_Shim_ScreenshotCapture) { |
| 2253 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); | 2251 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); |
| 2254 } | 2252 } |
| OLD | NEW |