OSDN Git Service

Merge webkit.org at r51976 : Implement new ChromeClient::focusedNodeChanged method.
authorSteve Block <steveblock@google.com>
Wed, 9 Dec 2009 14:40:12 +0000 (14:40 +0000)
committerSteve Block <steveblock@google.com>
Thu, 17 Dec 2009 17:41:11 +0000 (17:41 +0000)
See http://trac.webkit.org/changeset/50351

Change-Id: Ia3fa68ebb7f54b3a88635c9e8ebade0180a62e21

WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
WebKit/android/WebCoreSupport/ChromeClientAndroid.h

index fa70670..8390cbc 100644 (file)
@@ -104,6 +104,8 @@ void ChromeClientAndroid::unfocus() { notImplemented(); }
 bool ChromeClientAndroid::canTakeFocus(FocusDirection) { notImplemented(); return false; }
 void ChromeClientAndroid::takeFocus(FocusDirection) { notImplemented(); }
 
+void ChromeClientAndroid::focusedNodeChanged(Node*) { notImplemented(); }
+
 Page* ChromeClientAndroid::createWindow(Frame* frame, const FrameLoadRequest&,
         const WindowFeatures& features)
 {
index 3129d1f..7396997 100644 (file)
@@ -62,7 +62,9 @@ namespace android {
         
         virtual bool canTakeFocus(FocusDirection);
         virtual void takeFocus(FocusDirection);
-        
+
+        virtual void focusedNodeChanged(Node*);
+
         // The Frame pointer provides the ChromeClient with context about which
         // Frame wants to create the new Page.  Also, the newly created window
         // should not be shown to the user until the ChromeClient of the newly