[Pkg-mozext-commits] [firebug] 21/35: Use TabClient (native) to attach the current thread

David Prévot taffit at moszumanska.debian.org
Sat May 24 14:54:28 UTC 2014


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository firebug.

commit ee668a065fd90dd14255e2b2423def532b240b28
Author: Jan Odvarko <odvarko at gmail.com>
Date:   Thu May 22 13:22:54 2014 +0200

    Use TabClient (native) to attach the current thread
---
 extension/content/firebug/remoting/tabClient.js | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/extension/content/firebug/remoting/tabClient.js b/extension/content/firebug/remoting/tabClient.js
index 480d2ae..44c3959 100644
--- a/extension/content/firebug/remoting/tabClient.js
+++ b/extension/content/firebug/remoting/tabClient.js
@@ -305,7 +305,12 @@ TabClient.prototype = Obj.extend(new EventSource(),
         var threadActorObj = DebuggerLib.getThreadActor(this.browser);
         threadActorObj.global = this.window.wrappedJSObject;
 
-        this.client.attachThread(this.threadActor, this.onThreadAttached.bind(this));
+        // xxxHonza: The useSourceMaps options might be used by issue 5765 
+        var options = {
+            //useSourceMaps: true
+        };
+
+        this.tabClient.attachThread(options, this.onThreadAttached.bind(this));
     },
 
     onThreadAttached: function(response, threadClient)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/firebug.git



More information about the Pkg-mozext-commits mailing list