From e55806d9d9fe6be5bb3ee076392f2803ff0179f9 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Sun, 25 Apr 2010 18:35:18 -0700 Subject: Merge webkit.org at r55033 : Implement new ChromeClient::iconForFiles method for Android See http://trac.webkit.org/changeset/54923 Change-Id: I4f163c9716ca5e01b24f04337cf6c813e9faf0f7 --- WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp | 5 +++++ WebKit/android/WebCoreSupport/ChromeClientAndroid.h | 1 + 2 files changed, 6 insertions(+) (limited to 'WebKit/android/WebCoreSupport') diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp index c258d79..6d912fd 100644 --- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp +++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.cpp @@ -492,6 +492,11 @@ void ChromeClientAndroid::runOpenPanel(Frame* frame, core->openFileChooser(chooser); } +void ChromeClientAndroid::iconForFiles(const Vector&, PassRefPtr) +{ + notImplemented(); +} + bool ChromeClientAndroid::setCursor(PlatformCursorHandle) { notImplemented(); diff --git a/WebKit/android/WebCoreSupport/ChromeClientAndroid.h b/WebKit/android/WebCoreSupport/ChromeClientAndroid.h index 68cac24..2797bc9 100644 --- a/WebKit/android/WebCoreSupport/ChromeClientAndroid.h +++ b/WebKit/android/WebCoreSupport/ChromeClientAndroid.h @@ -151,6 +151,7 @@ namespace android { virtual void runOpenPanel(Frame*, PassRefPtr); virtual bool setCursor(PlatformCursorHandle); + virtual void iconForFiles(const Vector&, PassRefPtr); // Notification that the given form element has changed. This function // will be called frequently, so handling should be very fast. -- cgit v1.1