Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: chrome/browser/apps/web_view_browsertest.cc

Issue 28273006: <webview>: Implement declarativeWebRequest API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Istiaque's comments Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
849 "web_view/shim"); 849 "web_view/shim");
850 } 850 }
851 851
852 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestContentLoadEvent) { 852 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestContentLoadEvent) {
853 TestHelper("testContentLoadEvent", 853 TestHelper("testContentLoadEvent",
854 "DoneShimTest.PASSED", 854 "DoneShimTest.PASSED",
855 "DoneShimTest.FAILED", 855 "DoneShimTest.FAILED",
856 "web_view/shim"); 856 "web_view/shim");
857 } 857 }
858 858
859 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestDeclarativeWebRequestAPI) {
860 TestHelper("testDeclarativeWebRequestAPI",
861 "DoneShimTest.PASSED",
862 "DoneShimTest.FAILED",
863 "web_view/shim");
864 }
865
859 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPI) { 866 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPI) {
860 TestHelper("testWebRequestAPI", 867 TestHelper("testWebRequestAPI",
861 "DoneShimTest.PASSED", 868 "DoneShimTest.PASSED",
862 "DoneShimTest.FAILED", 869 "DoneShimTest.FAILED",
863 "web_view/shim"); 870 "web_view/shim");
864 } 871 }
865 872
866 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPIGoogleProperty) { 873 IN_PROC_BROWSER_TEST_F(WebViewTest, Shim_TestWebRequestAPIGoogleProperty) {
867 TestHelper("testWebRequestAPIGoogleProperty", 874 TestHelper("testWebRequestAPIGoogleProperty",
868 "DoneShimTest.PASSED", 875 "DoneShimTest.PASSED",
(...skipping 1014 matching lines...) Expand 10 before | Expand all | Expand 10 after
1883 } 1890 }
1884 }; 1891 };
1885 1892
1886 IN_PROC_BROWSER_TEST_F(WebViewPluginTest, TestLoadPluginEvent) { 1893 IN_PROC_BROWSER_TEST_F(WebViewPluginTest, TestLoadPluginEvent) {
1887 TestHelper("testPluginLoadPermission", 1894 TestHelper("testPluginLoadPermission",
1888 "DoneShimTest.PASSED", 1895 "DoneShimTest.PASSED",
1889 "DoneShimTest.FAILED", 1896 "DoneShimTest.FAILED",
1890 "web_view/shim"); 1897 "web_view/shim");
1891 } 1898 }
1892 #endif // defined(ENABLE_PLUGINS) 1899 #endif // defined(ENABLE_PLUGINS)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698