| 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/browser/apps/app_browsertest_util.h" | 9 #include "chrome/browser/apps/app_browsertest_util.h" |
| 10 #include "chrome/browser/automation/automation_util.h" | 10 #include "chrome/browser/automation/automation_util.h" |
| (...skipping 831 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 842 "web_view/shim"); | 842 "web_view/shim"); |
| 843 } | 843 } |
| 844 | 844 |
| 845 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestContentLoadEvent) { | 845 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestContentLoadEvent) { |
| 846 TestHelper("testContentLoadEvent", | 846 TestHelper("testContentLoadEvent", |
| 847 "DoneShimTest.PASSED", | 847 "DoneShimTest.PASSED", |
| 848 "DoneShimTest.FAILED", | 848 "DoneShimTest.FAILED", |
| 849 "web_view/shim"); | 849 "web_view/shim"); |
| 850 } | 850 } |
| 851 | 851 |
| 852 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestDeclarativeWebRequestAPI) { |
| 853 TestHelper("testDeclarativeWebRequestAPI", |
| 854 "DoneShimTest.PASSED", |
| 855 "DoneShimTest.FAILED", |
| 856 "web_view/shim"); |
| 857 } |
| 858 |
| 852 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPI) { | 859 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPI) { |
| 853 TestHelper("testWebRequestAPI", | 860 TestHelper("testWebRequestAPI", |
| 854 "DoneShimTest.PASSED", | 861 "DoneShimTest.PASSED", |
| 855 "DoneShimTest.FAILED", | 862 "DoneShimTest.FAILED", |
| 856 "web_view/shim"); | 863 "web_view/shim"); |
| 857 } | 864 } |
| 858 | 865 |
| 859 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPIGoogleProperty) { | 866 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPIGoogleProperty) { |
| 860 TestHelper("testWebRequestAPIGoogleProperty", | 867 TestHelper("testWebRequestAPIGoogleProperty", |
| 861 "DoneShimTest.PASSED", | 868 "DoneShimTest.PASSED", |
| (...skipping 1010 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1872 } | 1879 } |
| 1873 }; | 1880 }; |
| 1874 | 1881 |
| 1875 IN_PROC_BROWSER_TEST_F(WebViewPluginTest, TestLoadPluginEvent) { | 1882 IN_PROC_BROWSER_TEST_F(WebViewPluginTest, TestLoadPluginEvent) { |
| 1876 TestHelper("testPluginLoadPermission", | 1883 TestHelper("testPluginLoadPermission", |
| 1877 "DoneShimTest.PASSED", | 1884 "DoneShimTest.PASSED", |
| 1878 "DoneShimTest.FAILED", | 1885 "DoneShimTest.FAILED", |
| 1879 "web_view/shim"); | 1886 "web_view/shim"); |
| 1880 } | 1887 } |
| 1881 #endif // defined(ENABLE_PLUGINS) | 1888 #endif // defined(ENABLE_PLUGINS) |
| OLD | NEW |