| 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 894 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 905 // WebViewTest.Shim_TestOnEventProperty is flaky, so disable it. | 905 // WebViewTest.Shim_TestOnEventProperty is flaky, so disable it. |
| 906 // http://crbug.com/359832. | 906 // http://crbug.com/359832. |
| 907 IN_PROC_BROWSER_TEST_F(WebViewTest, DISABLED_Shim_TestOnEventProperty) { | 907 IN_PROC_BROWSER_TEST_F(WebViewTest, DISABLED_Shim_TestOnEventProperty) { |
| 908 TestHelper("testOnEventProperties", "web_view/shim", NO_TEST_SERVER); | 908 TestHelper("testOnEventProperties", "web_view/shim", NO_TEST_SERVER); |
| 909 } | 909 } |
| 910 | 910 |
| 911 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestLoadProgressEvent) { | 911 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestLoadProgressEvent) { |
| 912 TestHelper("testLoadProgressEvent", "web_view/shim", NO_TEST_SERVER); | 912 TestHelper("testLoadProgressEvent", "web_view/shim", NO_TEST_SERVER); |
| 913 } | 913 } |
| 914 | 914 |
| 915 // WebViewTest.Shim_TestDestroyOnEventListener is flaky, so disable it. | 915 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestDestroyOnEventListener) { |
| 916 // http://crbug.com/255106 | |
| 917 IN_PROC_BROWSER_TEST_F(WebViewTest, DISABLED_Shim_TestDestroyOnEventListener) { | |
| 918 TestHelper("testDestroyOnEventListener", "web_view/shim", NO_TEST_SERVER); | 916 TestHelper("testDestroyOnEventListener", "web_view/shim", NO_TEST_SERVER); |
| 919 } | 917 } |
| 920 | 918 |
| 921 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestCannotMutateEventName) { | 919 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestCannotMutateEventName) { |
| 922 TestHelper("testCannotMutateEventName", "web_view/shim", NO_TEST_SERVER); | 920 TestHelper("testCannotMutateEventName", "web_view/shim", NO_TEST_SERVER); |
| 923 } | 921 } |
| 924 | 922 |
| 925 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestPartitionRaisesException) { | 923 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestPartitionRaisesException) { |
| 926 TestHelper("testPartitionRaisesException", "web_view/shim", NO_TEST_SERVER); | 924 TestHelper("testPartitionRaisesException", "web_view/shim", NO_TEST_SERVER); |
| 927 } | 925 } |
| (...skipping 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2159 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { | 2157 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestFindAPI_findupdate) { |
| 2160 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); | 2158 TestHelper("testFindAPI_findupdate", "web_view/shim", NO_TEST_SERVER); |
| 2161 } | 2159 } |
| 2162 | 2160 |
| 2163 // <webview> screenshot capture fails with ubercomp. | 2161 // <webview> screenshot capture fails with ubercomp. |
| 2164 // See http://crbug.com/327035. | 2162 // See http://crbug.com/327035. |
| 2165 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, | 2163 IN_PROC_BROWSER_TEST_F(WebViewCaptureTest, |
| 2166 DISABLED_Shim_ScreenshotCapture) { | 2164 DISABLED_Shim_ScreenshotCapture) { |
| 2167 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); | 2165 TestHelper("testScreenshotCapture", "web_view/shim", NO_TEST_SERVER); |
| 2168 } | 2166 } |
| OLD | NEW |