summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2009-12-17 10:01:42 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2009-12-17 10:01:42 -0800
commit07f17b94f9d0a358a54ed2425be11f381c6163b4 (patch)
tree08310731da3b6cf0eec009982fe0f4a43b2f9304
parent56b9f7cfd39c86e2bb14b21320d63274a1e81b37 (diff)
parent74a4e2a1a7c59f4db044c2541919e05e7d04b2b5 (diff)
downloadexternal_webkit-07f17b94f9d0a358a54ed2425be11f381c6163b4.zip
external_webkit-07f17b94f9d0a358a54ed2425be11f381c6163b4.tar.gz
external_webkit-07f17b94f9d0a358a54ed2425be11f381c6163b4.tar.bz2
am 74a4e2a1: am d5340bbd: Merge webkit.org at r51976 : Implement new ChromeClient::focusedNodeChanged method.
Merge commit '74a4e2a1a7c59f4db044c2541919e05e7d04b2b5' * commit '74a4e2a1a7c59f4db044c2541919e05e7d04b2b5': Merge webkit.org at r51976 : Implement new ChromeClient::focusedNodeChanged method.
-rw-r--r--WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp2
-rw-r--r--WebKit/android/WebCoreSupport/ChromeClientAndroid.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
index fa70670..8390cbc 100644
--- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
+++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp
@@ -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)
{
diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.h b/WebKit/android/WebCoreSupport/ChromeClientAndroid.h
index 3129d1f..7396997 100644
--- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.h
+++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.h
@@ -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