| 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/native_app_window.h" | 5 #include "apps/native_app_window.h" |
| 6 #include "base/strings/stringprintf.h" | 6 #include "base/strings/stringprintf.h" |
| 7 #include "base/strings/utf_string_conversions.h" | 7 #include "base/strings/utf_string_conversions.h" |
| 8 #include "chrome/browser/apps/app_browsertest_util.h" | 8 #include "chrome/browser/apps/app_browsertest_util.h" |
| 9 #include "chrome/browser/automation/automation_util.h" | 9 #include "chrome/browser/automation/automation_util.h" |
| 10 #include "chrome/browser/extensions/extension_test_message_listener.h" | 10 #include "chrome/browser/extensions/extension_test_message_listener.h" |
| (...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 "web_view/shim"); | 798 "web_view/shim"); |
| 799 } | 799 } |
| 800 | 800 |
| 801 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPIGoogleProperty) { | 801 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPIGoogleProperty) { |
| 802 TestHelper("testWebRequestAPIGoogleProperty", | 802 TestHelper("testWebRequestAPIGoogleProperty", |
| 803 "DoneShimTest.PASSED", | 803 "DoneShimTest.PASSED", |
| 804 "DoneShimTest.FAILED", | 804 "DoneShimTest.FAILED", |
| 805 "web_view/shim"); | 805 "web_view/shim"); |
| 806 } | 806 } |
| 807 | 807 |
| 808 IN_PROC_BROWSER_TEST_F(WebViewTest, | |
| 809 Shim_TestWebRequestListenerSurvivesReparenting) { | |
| 810 TestHelper("testWebRequestListenerSurvivesReparenting", | |
| 811 "DoneShimTest.PASSED", | |
| 812 "DoneShimTest.FAILED", | |
| 813 "web_view/shim"); | |
| 814 } | |
| 815 | |
| 816 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestLoadStartLoadRedirect) { | 808 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestLoadStartLoadRedirect) { |
| 817 TestHelper("testLoadStartLoadRedirect", | 809 TestHelper("testLoadStartLoadRedirect", |
| 818 "DoneShimTest.PASSED", | 810 "DoneShimTest.PASSED", |
| 819 "DoneShimTest.FAILED", | 811 "DoneShimTest.FAILED", |
| 820 "web_view/shim"); | 812 "web_view/shim"); |
| 821 } | 813 } |
| 822 | 814 |
| 823 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestLoadAbortEmptyResponse) { | 815 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestLoadAbortEmptyResponse) { |
| 824 TestHelper("testLoadAbortEmptyResponse", | 816 TestHelper("testLoadAbortEmptyResponse", |
| 825 "DoneShimTest.PASSED", | 817 "DoneShimTest.PASSED", |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1701 "DoneDialogTest.FAILED", | 1693 "DoneDialogTest.FAILED", |
| 1702 "web_view/dialog"); | 1694 "web_view/dialog"); |
| 1703 } | 1695 } |
| 1704 | 1696 |
| 1705 IN_PROC_BROWSER_TEST_F(WebViewTest, Dialog_TestPromptDialog) { | 1697 IN_PROC_BROWSER_TEST_F(WebViewTest, Dialog_TestPromptDialog) { |
| 1706 TestHelper("testPromptDialog", | 1698 TestHelper("testPromptDialog", |
| 1707 "DoneDialogTest.PASSED", | 1699 "DoneDialogTest.PASSED", |
| 1708 "DoneDialogTest.FAILED", | 1700 "DoneDialogTest.FAILED", |
| 1709 "web_view/dialog"); | 1701 "web_view/dialog"); |
| 1710 } | 1702 } |
| OLD | NEW |