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

Unified Diff: Source/devtools/front_end/sdk/Script.js

Issue 444923002: DevTools: Blackboxing out of experiments. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 6 years, 4 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
« no previous file with comments | « Source/devtools/front_end/sdk/Linkifier.js ('k') | Source/devtools/front_end/settings/module.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/sdk/Script.js
diff --git a/Source/devtools/front_end/sdk/Script.js b/Source/devtools/front_end/sdk/Script.js
index 5a96777c6f404006cafbd3be379db730b4366f70..f2517ea52e2967881da4cf9d3391a5c7eed98e80 100644
--- a/Source/devtools/front_end/sdk/Script.js
+++ b/Source/devtools/front_end/sdk/Script.js
@@ -247,16 +247,5 @@ WebInspector.Script.prototype = {
return !!this.sourceURL && this.sourceURL.startsWith(WebInspector.Script.snippetSourceURLPrefix);
},
- /**
- * @return {boolean}
- */
- isFramework: function()
- {
- if (!WebInspector.experimentsSettings.frameworksDebuggingSupport.isEnabled())
- return false;
- var regex = WebInspector.settings.skipStackFramesPattern.asRegExp();
- return regex ? regex.test(this.sourceURL) : false;
- },
-
__proto__: WebInspector.SDKObject.prototype
}
« no previous file with comments | « Source/devtools/front_end/sdk/Linkifier.js ('k') | Source/devtools/front_end/settings/module.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698