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

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

Issue 2571063002: Remove Blink-in-JS (Closed)
Patch Set: Created 4 years 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 1f0bd83ea7edbb31e61d35b480a2a83381131da6..acd4a1ec5ee6789e01a315f9a3e05770479d27ef 100644
--- a/third_party/WebKit/Source/core/frame/Deprecation.cpp
+++ b/third_party/WebKit/Source/core/frame/Deprecation.cpp
@@ -169,15 +169,6 @@ void Deprecation::countDeprecation(const Document& document,
Deprecation::countDeprecation(document.frame(), feature);
}
-void Deprecation::countDeprecationIfNotPrivateScript(
- v8::Isolate* isolate,
- ExecutionContext* context,
- UseCounter::Feature feature) {
- if (DOMWrapperWorld::current(isolate).isPrivateScriptIsolatedWorld())
- return;
- Deprecation::countDeprecation(context, feature);
-}
-
void Deprecation::countDeprecationCrossOriginIframe(
const LocalFrame* frame,
UseCounter::Feature feature) {
« no previous file with comments | « third_party/WebKit/Source/core/frame/Deprecation.h ('k') | third_party/WebKit/Source/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698