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

Unified Diff: third_party/WebKit/Source/core/frame/Deprecation.cpp

Issue 2089353003: Un-deprecate modal dialogs during microtasks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 4 years, 6 months 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: third_party/WebKit/Source/core/frame/Deprecation.cpp
diff --git a/third_party/WebKit/Source/core/frame/Deprecation.cpp b/third_party/WebKit/Source/core/frame/Deprecation.cpp
index 97dfc34cb9de1675b6402ac7aba4df56e89a17bc..284233c12caf6e9e1645f262b48edd1ec192b878 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -360,20 +360,8 @@ String Deprecation::deprecationMessage(UseCounter::Feature feature)
case UseCounter::V8KeyboardEvent_KeyIdentifier_AttributeGetter:
return willBeRemoved("'KeyboardEvent.keyIdentifier'", 53, "5316065118650368");
- case UseCounter::During_Microtask_Alert:
- return willBeRemoved("Invoking 'alert()' during microtask execution", 53, "5647113010544640");
-
- case UseCounter::During_Microtask_Confirm:
- return willBeRemoved("Invoking 'confirm()' during microtask execution", 53, "5647113010544640");
-
- case UseCounter::During_Microtask_Print:
- return willBeRemoved("Invoking 'print()' during microtask execution", 53, "5647113010544640");
-
- case UseCounter::During_Microtask_Prompt:
- return willBeRemoved("Invoking 'prompt()' during microtask execution", 53, "5647113010544640");
-
case UseCounter::During_Microtask_SyncXHR:
- return willBeRemoved("Invoking 'send()' on a sync XHR during microtask execution", 53, "5647113010544640");
+ return willBeRemoved("Invoking 'send()' on a sync XHR during microtask execution", 54, "5647113010544640");
case UseCounter::MediaStreamOnEnded:
return replacedWillBeRemoved("The MediaStream 'ended' event", "the MediaStream 'inactive' event", 53, "5730404371791872");

Powered by Google App Engine
This is Rietveld 408576698