Title: [103500] trunk/Source/WebCore
Revision
103500
Author
loi...@chromium.org
Date
2011-12-22 00:44:47 -0800 (Thu, 22 Dec 2011)

Log Message

Unreviewed, rolling out r103405.
http://trac.webkit.org/changeset/103405
https://bugs.webkit.org/show_bug.cgi?id=74088

it broke WorkerDevToolsSanityTest.InspectSharedWorker

* inspector/Inspector.json:
* inspector/InspectorDebuggerAgent.cpp:
(WebCore::InspectorDebuggerAgent::didParseSource):
* inspector/InspectorDebuggerAgent.h:
* inspector/front-end/DebuggerModel.js:
(WebInspector.DebuggerModel.prototype._parsedScriptSource):
(WebInspector.DebuggerDispatcher.prototype.scriptParsed):
* inspector/front-end/RawSourceCode.js:
(WebInspector.RawSourceCode):
* inspector/front-end/Script.js:
(WebInspector.Script):
(WebInspector.Script.prototype.searchInContent):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (103499 => 103500)


--- trunk/Source/WebCore/ChangeLog	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/ChangeLog	2011-12-22 08:44:47 UTC (rev 103500)
@@ -1,3 +1,24 @@
+2011-12-22  Ilya Tikhonovsky  <loi...@chromium.org>
+
+        Unreviewed, rolling out r103405.
+        http://trac.webkit.org/changeset/103405
+        https://bugs.webkit.org/show_bug.cgi?id=74088
+
+        it broke WorkerDevToolsSanityTest.InspectSharedWorker
+
+        * inspector/Inspector.json:
+        * inspector/InspectorDebuggerAgent.cpp:
+        (WebCore::InspectorDebuggerAgent::didParseSource):
+        * inspector/InspectorDebuggerAgent.h:
+        * inspector/front-end/DebuggerModel.js:
+        (WebInspector.DebuggerModel.prototype._parsedScriptSource):
+        (WebInspector.DebuggerDispatcher.prototype.scriptParsed):
+        * inspector/front-end/RawSourceCode.js:
+        (WebInspector.RawSourceCode):
+        * inspector/front-end/Script.js:
+        (WebInspector.Script):
+        (WebInspector.Script.prototype.searchInContent):
+
 2011-12-21  Darin Adler  <da...@apple.com>
 
         Make ~CSSParserSelector use Vector<OwnPtr>

Modified: trunk/Source/WebCore/inspector/Inspector.json (103499 => 103500)


--- trunk/Source/WebCore/inspector/Inspector.json	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/inspector/Inspector.json	2011-12-22 08:44:47 UTC (rev 103500)
@@ -2058,8 +2058,7 @@
                     { "name": "startColumn", "type": "integer", "description": "Column offset of the script within the resource with given URL." },
                     { "name": "endLine", "type": "integer", "description": "Last line of the script." },
                     { "name": "endColumn", "type": "integer", "description": "Length of the last line of the script." },
-                    { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script." },
-                    { "name": "sourceMapURL", "type": "string", "optional": true, "description": "URL of source map associated with script (if any)." }
+                    { "name": "isContentScript", "type": "boolean", "optional": true, "description": "Determines whether this script is a user extension script." }
                 ],
                 "description": "Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger."
             },

Modified: trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp (103499 => 103500)


--- trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/inspector/InspectorDebuggerAgent.cpp	2011-12-22 08:44:47 UTC (rev 103500)
@@ -35,7 +35,6 @@
 #include "InjectedScript.h"
 #include "InjectedScriptManager.h"
 #include "InspectorFrontend.h"
-#include "InspectorPageAgent.h"
 #include "InspectorState.h"
 #include "InspectorValues.h"
 #include "InstrumentingAgents.h"
@@ -474,28 +473,12 @@
     return injectedScript.wrapCallFrames(m_currentCallStack);
 }
 
-String InspectorDebuggerAgent::sourceMapURLForScript(const Script& script)
-{
-    DEFINE_STATIC_LOCAL(String, sourceMapHttpHeader, ("X-SourceMap"));
-
-    if (script.url.isEmpty())
-        return String();
-
-    InspectorPageAgent* pageAgent = m_instrumentingAgents->inspectorPageAgent();
-    CachedResource* resource = pageAgent->cachedResource(pageAgent->mainFrame(), KURL(ParsedURLString, script.url));
-    if (resource)
-        return resource->response().httpHeaderField(sourceMapHttpHeader);
-    return String();
-}
-
 // _javascript_DebugListener functions
 
 void InspectorDebuggerAgent::didParseSource(const String& scriptId, const Script& script)
 {
     // Don't send script content to the front end until it's really needed.
-    const bool* isContentScript = script.isContentScript ? &script.isContentScript : 0;
-    String sourceMapURL = sourceMapURLForScript(script);
-    m_frontend->scriptParsed(scriptId, script.url, script.startLine, script.startColumn, script.endLine, script.endColumn, isContentScript, sourceMapURL);
+    m_frontend->scriptParsed(scriptId, script.url, script.startLine, script.startColumn, script.endLine, script.endColumn, script.isContentScript ? &script.isContentScript : 0);
 
     m_scripts.set(scriptId, script);
 

Modified: trunk/Source/WebCore/inspector/InspectorDebuggerAgent.h (103499 => 103500)


--- trunk/Source/WebCore/inspector/InspectorDebuggerAgent.h	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/inspector/InspectorDebuggerAgent.h	2011-12-22 08:44:47 UTC (rev 103500)
@@ -141,8 +141,6 @@
     bool assertPaused(ErrorString*);
     void clearBreakDetails();
 
-    String sourceMapURLForScript(const Script&);
-
     typedef HashMap<String, Script> ScriptsMap;
     typedef HashMap<String, Vector<String> > BreakpointIdToDebugServerBreakpointIdsMap;
 

Modified: trunk/Source/WebCore/inspector/front-end/DebuggerModel.js (103499 => 103500)


--- trunk/Source/WebCore/inspector/front-end/DebuggerModel.js	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/inspector/front-end/DebuggerModel.js	2011-12-22 08:44:47 UTC (rev 103500)
@@ -325,9 +325,9 @@
      * @param {number} endColumn
      * @param {boolean} isContentScript
      */
-    _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL)
+    _parsedScriptSource: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript)
     {
-        var script = new WebInspector.Script(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL);
+        var script = new WebInspector.Script(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript);
         this._scripts[scriptId] = script;
         this.dispatchEventToListeners(WebInspector.DebuggerModel.Events.ParsedScriptSource, script);
     },
@@ -394,9 +394,9 @@
      * @param {number} endColumn
      * @param {boolean=} isContentScript
      */
-    scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL)
+    scriptParsed: function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript)
     {
-        this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript, sourceMapURL);
+        this._debuggerModel._parsedScriptSource(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, !!isContentScript);
     },
 
     /**

Modified: trunk/Source/WebCore/inspector/front-end/RawSourceCode.js (103499 => 103500)


--- trunk/Source/WebCore/inspector/front-end/RawSourceCode.js	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/inspector/front-end/RawSourceCode.js	2011-12-22 08:44:47 UTC (rev 103500)
@@ -45,7 +45,6 @@
     this.id = id;
     this.url = ""
     this.isContentScript = script.isContentScript;
-    this.sourceMapURL = script.sourceMapURL;
     this._scripts = [script];
     this._formatter = formatter;
     this._formatted = formatted;

Modified: trunk/Source/WebCore/inspector/front-end/Script.js (103499 => 103500)


--- trunk/Source/WebCore/inspector/front-end/Script.js	2011-12-22 07:46:56 UTC (rev 103499)
+++ trunk/Source/WebCore/inspector/front-end/Script.js	2011-12-22 08:44:47 UTC (rev 103500)
@@ -33,7 +33,7 @@
  * @param {number} endColumn
  * @param {boolean} isContentScript
  */
-WebInspector.Script = function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript, sourceMapURL)
+WebInspector.Script = function(scriptId, sourceURL, startLine, startColumn, endLine, endColumn, isContentScript)
 {
     this.scriptId = scriptId;
     this.sourceURL = sourceURL;
@@ -42,7 +42,6 @@
     this.endLine = endLine;
     this.endColumn = endColumn;
     this.isContentScript = isContentScript;
-    this.sourceMapURL = sourceMapURL;
 }
 
 WebInspector.Script.prototype = {
@@ -97,14 +96,14 @@
             }
             callback(result || []);
         }
-
+        
         if (this.scriptId) {
             // Script failed to parse.
             DebuggerAgent.searchInContent(this.scriptId, query, caseSensitive, isRegex, innerCallback.bind(this));
         } else
             callback([]);
     },
-
+    
     /**
      * @param {string} newSource
      * @param {function(?Protocol.Error, Array.<DebuggerAgent.CallFrame>=)} callback
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to