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

steveblock at google.com steveblock at google.com
Fri Jan 21 14:48:37 UTC 2011


The following commit has been merged in the debian/experimental branch:
commit 216aa8df165ab18486bed8b52cfed1e17e8e0d81
Author: steveblock at google.com <steveblock at google.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 30 20:53:31 2010 +0000

    2010-12-30  Steve Block  <steveblock at google.com>
    
            Reviewed by Gavin Barraclough.
    
            Enable JSC Rich Source Info for Android even when Inspector and Debugger are disabled
            https://bugs.webkit.org/show_bug.cgi?id=51740
    
            This is a policy decision for Android.
    
            No new tests, simply enabling existing, tested code on Android.
    
            * bindings/js/JSDOMWindowBase.cpp:
            (WebCore::JSDOMWindowBase::supportsRichSourceInfo):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@74806 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 07d32e2..071a4a4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,17 @@
+2010-12-30  Steve Block  <steveblock at google.com>
+
+        Reviewed by Gavin Barraclough.
+
+        Enable JSC Rich Source Info for Android even when Inspector and Debugger are disabled
+        https://bugs.webkit.org/show_bug.cgi?id=51740
+
+        This is a policy decision for Android.
+
+        No new tests, simply enabling existing, tested code on Android.
+
+        * bindings/js/JSDOMWindowBase.cpp:
+        (WebCore::JSDOMWindowBase::supportsRichSourceInfo):
+
 2010-12-30  Yael Aharon  <yael.aharon at nokia.com>
 
         Reviewed by Adam Barth.
diff --git a/WebCore/bindings/js/JSDOMWindowBase.cpp b/WebCore/bindings/js/JSDOMWindowBase.cpp
index 26371da..68c0088 100644
--- a/WebCore/bindings/js/JSDOMWindowBase.cpp
+++ b/WebCore/bindings/js/JSDOMWindowBase.cpp
@@ -113,7 +113,9 @@ bool JSDOMWindowBase::supportsProfiling() const
 
 bool JSDOMWindowBase::supportsRichSourceInfo() const
 {
-#if !ENABLE(JAVASCRIPT_DEBUGGER) || !ENABLE(INSPECTOR)
+#if PLATFORM(ANDROID)
+    return true;
+#elif !ENABLE(JAVASCRIPT_DEBUGGER) || !ENABLE(INSPECTOR)
     return false;
 #else
     Frame* frame = impl()->frame();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list