Home
last modified time | relevance | path

Searched refs:isContentScript (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
DCallStackSidebarPane.js117 …tor.BlackboxSupport.isBlackboxed(callFrame.script.sourceURL, callFrame.script.isContentScript())) {
162 … this.appendBlackboxURLContextMenuItems(contextMenu, script.sourceURL, script.isContentScript());
188 appendBlackboxURLContextMenuItems: function(contextMenu, url, isContentScript) argument
190 var blackboxed = WebInspector.BlackboxSupport.isBlackboxed(url, isContentScript);
192 …: "Stop Blackboxing"), this._handleContextMenuBlackboxURL.bind(this, url, isContentScript, false));
196 if (isContentScript)
206 _handleContextMenuBlackboxURL: function(url, isContentScript, blackbox) argument
209 if (isContentScript)
214 WebInspector.BlackboxSupport.unblackbox(url, isContentScript);
DJavaScriptSourceFrame.js134 var isContentScript = projectType === WebInspector.projectTypes.ContentScripts;
135 if (!WebInspector.BlackboxSupport.isBlackboxed(url, isContentScript)) {
157 WebInspector.BlackboxSupport.unblackbox(url, isContentScript);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
DBlackboxSupport.js74 WebInspector.BlackboxSupport.unblackbox = function(url, isContentScript) argument
76 if (isContentScript)
115 WebInspector.BlackboxSupport.isBlackboxed = function(url, isContentScript) argument
117 if (isContentScript && WebInspector.settings.skipContentScripts.get())
DScript.js41 …et, scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL… argument
50 this._isContentScript = isContentScript;
78 isContentScript: function() method in WebInspector.Script
DDebuggerModel.js478 …ion(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL… argument
480 …(), scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL…
789 …ion(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL… argument
791 …e(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL…
805 …ion(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL… argument
807 …e(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL…
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
DNetworkUISourceCodeProvider.js82 if (script.isContentScript() && !script.hasSourceURL) {
87 this._addFile(script.sourceURL, script, script.isContentScript());
126 _addFile: function(url, contentProvider, isContentScript) argument
137 this._networkWorkspaceBinding.addFileForURL(url, contentProvider, isContentScript);
DNetworkWorkspaceBinding.js136 addFileForURL: function(url, contentProvider, isContentScript) argument
148 var projectDelegate = this._projectDelegate(projectName, isContentScript || false);
DCompilerScriptMapping.js160 … this._networkWorkspaceBinding.addFileForURL(sourceURL, contentProvider, script.isContentScript());
DLinkifier.js193 WebInspector.BlackboxSupport.isBlackboxed(script.sourceURL, script.isContentScript()) :
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DScriptDebugListener.h55 , isContentScript(false) in Script()
67 bool isContentScript; variable
DInspectorDebuggerAgent.cpp498 *isBlackboxed = (m_skipContentScripts && it->value.isContentScript) in topCallFrameSkipUnknownSources()
1342 const bool* isContentScript = script.isContentScript ? &script.isContentScript : 0; in didParseSource() local
1358 …ipt.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript, sourceMapURL… in didParseSource()
1360 …ipt.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript, sourceMapURL… in didParseSource()
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DDebuggerScript.js182 isContentScript: !!script.context_data && script.context_data.indexOf("injected") == 0
DScriptDebugServer.cpp580 …script.isContentScript = object->Get(v8AtomicString(m_isolate, "isContentScript"))->ToBoolean()->V… in dispatchDidParseSource()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/
DConsoleViewMessage.js328 … WebInspector.BlackboxSupport.isBlackboxed(script.sourceURL, script.isContentScript()) :