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

Unified Diff: chrome/test/ppapi/ppapi_interactive_browsertest.cc

Issue 2419413002: Deleted CONTENT_SETTINGS_TYPE_FULLSCREEN and MOUSELOCK. (Closed)
Patch Set: Fix more things. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/test/ppapi/ppapi_interactive_browsertest.cc
diff --git a/chrome/test/ppapi/ppapi_interactive_browsertest.cc b/chrome/test/ppapi/ppapi_interactive_browsertest.cc
index ec026a0ece841502c5b046fa632ce7033ba1f616..849f680d2673da9495dbdf18d71e99210c31bdd2 100644
--- a/chrome/test/ppapi/ppapi_interactive_browsertest.cc
+++ b/chrome/test/ppapi/ppapi_interactive_browsertest.cc
@@ -22,25 +22,7 @@
// Disabled due to timeouts: http://crbug.com/136548
IN_PROC_BROWSER_TEST_F(
OutOfProcessPPAPITest, DISABLED_MouseLock_SucceedWhenAllowed) {
- HostContentSettingsMap* settings_map =
- HostContentSettingsMapFactory::GetForProfile(browser()->profile());
-
- settings_map->SetDefaultContentSetting(CONTENT_SETTINGS_TYPE_MOUSELOCK,
- CONTENT_SETTING_ALLOW);
-
RunTestViaHTTP("MouseLock_SucceedWhenAllowed");
}
-// Disabled due to flaky timeouts: http://crbug.com/137421
-IN_PROC_BROWSER_TEST_F(
- OutOfProcessPPAPITest, DISABLED_MouseLock_FailWhenBlocked) {
- HostContentSettingsMap* settings_map =
- HostContentSettingsMapFactory::GetForProfile(browser()->profile());
-
- settings_map->SetDefaultContentSetting(CONTENT_SETTINGS_TYPE_MOUSELOCK,
- CONTENT_SETTING_BLOCK);
-
- RunTestViaHTTP("MouseLock_FailWhenBlocked");
-}
-
#endif // ADDRESS_SANITIZER

Powered by Google App Engine
This is Rietveld 408576698