| 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 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 "web_view/shim"); | 673 "web_view/shim"); |
| 674 } | 674 } |
| 675 | 675 |
| 676 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestChromeExtensionURL) { | 676 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestChromeExtensionURL) { |
| 677 TestHelper("testChromeExtensionURL", | 677 TestHelper("testChromeExtensionURL", |
| 678 "DoneShimTest.PASSED", | 678 "DoneShimTest.PASSED", |
| 679 "DoneShimTest.FAILED", | 679 "DoneShimTest.FAILED", |
| 680 "web_view/shim"); | 680 "web_view/shim"); |
| 681 } | 681 } |
| 682 | 682 |
| 683 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestChromeExtensionRelativePath) { |
| 684 TestHelper("testChromeExtensionRelativePath", |
| 685 "DoneShimTest.PASSED", |
| 686 "DoneShimTest.FAILED", |
| 687 "web_view/shim"); |
| 688 } |
| 689 |
| 683 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestInvalidChromeExtensionURL) { | 690 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestInvalidChromeExtensionURL) { |
| 684 TestHelper("testInvalidChromeExtensionURL", | 691 TestHelper("testInvalidChromeExtensionURL", |
| 685 "DoneShimTest.PASSED", | 692 "DoneShimTest.PASSED", |
| 686 "DoneShimTest.FAILED", | 693 "DoneShimTest.FAILED", |
| 687 "web_view/shim"); | 694 "web_view/shim"); |
| 688 } | 695 } |
| 689 | 696 |
| 690 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestEventName) { | 697 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestEventName) { |
| 691 TestHelper("testEventName", | 698 TestHelper("testEventName", |
| 692 "DoneShimTest.PASSED", | 699 "DoneShimTest.PASSED", |
| (...skipping 1178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1871 } | 1878 } |
| 1872 }; | 1879 }; |
| 1873 | 1880 |
| 1874 IN_PROC_BROWSER_TEST_F(WebViewPluginTest, TestLoadPluginEvent) { | 1881 IN_PROC_BROWSER_TEST_F(WebViewPluginTest, TestLoadPluginEvent) { |
| 1875 TestHelper("testPluginLoadPermission", | 1882 TestHelper("testPluginLoadPermission", |
| 1876 "DoneShimTest.PASSED", | 1883 "DoneShimTest.PASSED", |
| 1877 "DoneShimTest.FAILED", | 1884 "DoneShimTest.FAILED", |
| 1878 "web_view/shim"); | 1885 "web_view/shim"); |
| 1879 } | 1886 } |
| 1880 #endif // defined(ENABLE_PLUGINS) | 1887 #endif // defined(ENABLE_PLUGINS) |
| OLD | NEW |