[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

eric at webkit.org eric at webkit.org
Wed Dec 22 11:49:09 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 61402f9a649dc8b1683724b3fa4cff7c35776440
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 8 04:47:56 2010 +0000

    2010-08-07  Jay Civelli  <jcivelli at chromium.org>
    
            Reviewed by Eric Seidel.
    
            [Chromium] Remove unecessary focus code.
            https://bugs.webkit.org/show_bug.cgi?id=43542
    
            * platform/chromium/ChromiumBridge.h:
            * platform/chromium/WidgetChromium.cpp:
            (WebCore::Widget::setFocus):
    2010-08-07  Jay Civelli  <jcivelli at chromium.org>
    
            Reviewed by Eric Seidel.
    
            Removed unecessary focus code.
            https://bugs.webkit.org/show_bug.cgi?id=43542
    
            * src/ChromiumBridge.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64935 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index fd07364..36cb888 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-08-07  Jay Civelli  <jcivelli at chromium.org>
+
+        Reviewed by Eric Seidel.
+
+        [Chromium] Remove unecessary focus code.
+        https://bugs.webkit.org/show_bug.cgi?id=43542
+
+        * platform/chromium/ChromiumBridge.h:
+        * platform/chromium/WidgetChromium.cpp:
+        (WebCore::Widget::setFocus):
+
 2010-08-07  Gyuyoung Kim  <gyuyoung.kim at samsung.com>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/platform/chromium/ChromiumBridge.h b/WebCore/platform/chromium/ChromiumBridge.h
index acfefe1..7662c72 100644
--- a/WebCore/platform/chromium/ChromiumBridge.h
+++ b/WebCore/platform/chromium/ChromiumBridge.h
@@ -260,7 +260,6 @@ namespace WebCore {
 
         // Widget -------------------------------------------------------------
         static void widgetSetCursor(Widget*, const Cursor&);
-        static void widgetSetFocus(Widget*);
     };
 
 } // namespace WebCore
diff --git a/WebCore/platform/chromium/WidgetChromium.cpp b/WebCore/platform/chromium/WidgetChromium.cpp
index 94afa0d..1b7fef4 100644
--- a/WebCore/platform/chromium/WidgetChromium.cpp
+++ b/WebCore/platform/chromium/WidgetChromium.cpp
@@ -65,8 +65,6 @@ void Widget::paint(GraphicsContext*, const IntRect&)
 
 void Widget::setFocus(bool focused)
 {
-    if (focused)
-        ChromiumBridge::widgetSetFocus(this);
 }
 
 void Widget::setIsSelected(bool)
diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index dc382be..a4c845c 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,12 @@
+2010-08-07  Jay Civelli  <jcivelli at chromium.org>
+
+        Reviewed by Eric Seidel.
+
+        Removed unecessary focus code.
+        https://bugs.webkit.org/show_bug.cgi?id=43542
+
+        * src/ChromiumBridge.cpp:
+
 2010-08-06  Victor Wang  <victorw at chromium.org>
 
         Reviewed by Kent Tamura.
diff --git a/WebKit/chromium/src/ChromiumBridge.cpp b/WebKit/chromium/src/ChromiumBridge.cpp
index 397ea17..a43109c 100644
--- a/WebKit/chromium/src/ChromiumBridge.cpp
+++ b/WebKit/chromium/src/ChromiumBridge.cpp
@@ -862,13 +862,6 @@ void ChromiumBridge::widgetSetCursor(Widget* widget, const Cursor& cursor)
         client->setCursor(WebCursorInfo(cursor));
 }
 
-void ChromiumBridge::widgetSetFocus(Widget* widget)
-{
-    ChromeClientImpl* client = toChromeClientImpl(widget);
-    if (client)
-        client->focus();
-}
-
 WorkerContextProxy* WorkerContextProxy::create(Worker* worker)
 {
     return WebWorkerClientImpl::createWorkerContextProxy(worker);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list