[SCM] WebKit Debian packaging branch, debian/experimental, updated. debian/1.3.8-1-1049-g2e11a8e

loislo at chromium.org loislo at chromium.org
Fri Jan 21 15:13:54 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 0b1745130710723f688685d4083cafe9c610dc8e
Author: loislo at chromium.org <loislo at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 10 10:44:17 2011 +0000

    2011-01-10  Ilya Tikhonovsky  <loislo at chromium.org>
    
            Reviewed by Pavel Feldman.
    
            Web Inspector: protocol related change. Rename stepIntoStatement, stepOutOfFunction, stepOverStatement.
            stepIntoStatement => stepInto
            stepOutOfFunction => stepOut
            stepOverStatement => stepOver
    
            https://bugs.webkit.org/show_bug.cgi?id=52142
    
            * inspector/Inspector.idl:
            * inspector/InspectorDebuggerAgent.cpp:
            (WebCore::InspectorDebuggerAgent::stepOver):
            (WebCore::InspectorDebuggerAgent::stepInto):
            (WebCore::InspectorDebuggerAgent::stepOut):
            * inspector/InspectorDebuggerAgent.h:
            * inspector/front-end/ScriptsPanel.js:
            (WebInspector.ScriptsPanel.prototype._stepOverClicked):
            (WebInspector.ScriptsPanel.prototype._stepIntoClicked):
            (WebInspector.ScriptsPanel.prototype._stepOutClicked):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@75365 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebCore/ChangeLog b/Source/WebCore/ChangeLog
index f9ba447..f3326bc 100644
--- a/Source/WebCore/ChangeLog
+++ b/Source/WebCore/ChangeLog
@@ -1,3 +1,25 @@
+2011-01-10  Ilya Tikhonovsky  <loislo at chromium.org>
+
+        Reviewed by Pavel Feldman.
+
+        Web Inspector: protocol related change. Rename stepIntoStatement, stepOutOfFunction, stepOverStatement.
+        stepIntoStatement => stepInto
+        stepOutOfFunction => stepOut
+        stepOverStatement => stepOver
+
+        https://bugs.webkit.org/show_bug.cgi?id=52142
+
+        * inspector/Inspector.idl:
+        * inspector/InspectorDebuggerAgent.cpp:
+        (WebCore::InspectorDebuggerAgent::stepOver):
+        (WebCore::InspectorDebuggerAgent::stepInto):
+        (WebCore::InspectorDebuggerAgent::stepOut):
+        * inspector/InspectorDebuggerAgent.h:
+        * inspector/front-end/ScriptsPanel.js:
+        (WebInspector.ScriptsPanel.prototype._stepOverClicked):
+        (WebInspector.ScriptsPanel.prototype._stepIntoClicked):
+        (WebInspector.ScriptsPanel.prototype._stepOutClicked):
+
 2011-01-10  Carlos Garcia Campos  <cgarcia at igalia.com>
 
         Reviewed by Martin Robinson.
diff --git a/Source/WebCore/inspector/Inspector.idl b/Source/WebCore/inspector/Inspector.idl
index 7b2d7e2..5359e16 100644
--- a/Source/WebCore/inspector/Inspector.idl
+++ b/Source/WebCore/inspector/Inspector.idl
@@ -249,9 +249,9 @@ module core {
         [domain=Inspector] void setXHRBreakpoint(in String url); // FIXME: Move to newly introduced BrowserDebugger.
         [domain=Inspector] void removeXHRBreakpoint(in String url); // FIXME: Move to newly introduced BrowserDebugger.
 
-        [domain=Debugger] void stepOverStatement(); // FIXME: rename to stepOver
-        [domain=Debugger] void stepIntoStatement(); // FIXME: rename to stepInto
-        [domain=Debugger] void stepOutOfFunction(); // FIXME: rename to stepOut
+        [domain=Debugger] void stepOver();
+        [domain=Debugger] void stepInto();
+        [domain=Debugger] void stepOut();
         [domain=Debugger] void pause();
         [notify, domain=Debugger] void pausedScript(out Object details);
         [domain=Debugger] void resume();
diff --git a/Source/WebCore/inspector/InspectorDebuggerAgent.cpp b/Source/WebCore/inspector/InspectorDebuggerAgent.cpp
index 0046989..e999c75 100644
--- a/Source/WebCore/inspector/InspectorDebuggerAgent.cpp
+++ b/Source/WebCore/inspector/InspectorDebuggerAgent.cpp
@@ -152,17 +152,17 @@ void InspectorDebuggerAgent::resume()
     ScriptDebugServer::shared().continueProgram();
 }
 
-void InspectorDebuggerAgent::stepOverStatement()
+void InspectorDebuggerAgent::stepOver()
 {
     ScriptDebugServer::shared().stepOverStatement();
 }
 
-void InspectorDebuggerAgent::stepIntoStatement()
+void InspectorDebuggerAgent::stepInto()
 {
     ScriptDebugServer::shared().stepIntoStatement();
 }
 
-void InspectorDebuggerAgent::stepOutOfFunction()
+void InspectorDebuggerAgent::stepOut()
 {
     ScriptDebugServer::shared().stepOutOfFunction();
 }
diff --git a/Source/WebCore/inspector/InspectorDebuggerAgent.h b/Source/WebCore/inspector/InspectorDebuggerAgent.h
index 6e45e59..de530d2 100644
--- a/Source/WebCore/inspector/InspectorDebuggerAgent.h
+++ b/Source/WebCore/inspector/InspectorDebuggerAgent.h
@@ -73,9 +73,9 @@ public:
     void breakProgram(DebuggerEventType type, PassRefPtr<InspectorValue> data);
     void pause();
     void resume();
-    void stepOverStatement();
-    void stepIntoStatement();
-    void stepOutOfFunction();
+    void stepOver();
+    void stepInto();
+    void stepOut();
 
     void setPauseOnExceptionsState(long pauseState, long* newState);
     long pauseOnExceptionsState();
diff --git a/Source/WebCore/inspector/front-end/ScriptsPanel.js b/Source/WebCore/inspector/front-end/ScriptsPanel.js
index 138bbda..18c7cc8 100644
--- a/Source/WebCore/inspector/front-end/ScriptsPanel.js
+++ b/Source/WebCore/inspector/front-end/ScriptsPanel.js
@@ -892,7 +892,7 @@ WebInspector.ScriptsPanel.prototype = {
 
         this._clearInterface();
 
-        InspectorBackend.stepOverStatement();
+        InspectorBackend.stepOver();
     },
 
     _stepIntoClicked: function()
@@ -902,7 +902,7 @@ WebInspector.ScriptsPanel.prototype = {
 
         this._clearInterface();
 
-        InspectorBackend.stepIntoStatement();
+        InspectorBackend.stepInto();
     },
 
     _stepOutClicked: function()
@@ -912,7 +912,7 @@ WebInspector.ScriptsPanel.prototype = {
 
         this._clearInterface();
 
-        InspectorBackend.stepOutOfFunction();
+        InspectorBackend.stepOut();
     },
 
     toggleBreakpointsClicked: function()

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list