diff options
Diffstat (limited to 'WebCore')
-rw-r--r-- | WebCore/WebCorePrefixAndroid.h | 3 | ||||
-rw-r--r-- | WebCore/plugins/PluginInfoStore.cpp | 7 |
2 files changed, 3 insertions, 7 deletions
diff --git a/WebCore/WebCorePrefixAndroid.h b/WebCore/WebCorePrefixAndroid.h index 96fa376..c4782b6 100644 --- a/WebCore/WebCorePrefixAndroid.h +++ b/WebCore/WebCorePrefixAndroid.h @@ -81,6 +81,9 @@ typedef unsigned char flex_uint8_t; #define ANDROID_SELECT_TEXT_AREAS #define ANDROID_FIX +// note: if uncomment ANDROID_INSTRUMENT here, you must also +// uncomment it on line 31 of JavaScriptCore/kjs/config.h +// #define ANDROID_INSTRUMENT // Fix for issue 878095. Only call onBlur on an element if it has an // onBlur event. diff --git a/WebCore/plugins/PluginInfoStore.cpp b/WebCore/plugins/PluginInfoStore.cpp index bd2f2d0..732a1e1 100644 --- a/WebCore/plugins/PluginInfoStore.cpp +++ b/WebCore/plugins/PluginInfoStore.cpp @@ -27,9 +27,6 @@ #include "PluginInfoStore.h" #include "KURL.h" -#if PLATFORM(ANDROID) -#include "Page.h" -#endif #include "PluginData.h" #include "PluginDatabase.h" #include "PluginPackage.h" @@ -96,15 +93,11 @@ bool PluginInfoStore::supportsMIMEType(const WebCore::String& mimeType) void refreshPlugins(bool reloadOpenPages) { -#if PLATFORM(ANDROID) - Page::refreshPlugins(reloadOpenPages); -#else PluginDatabase::installedPlugins()->refresh(); if (reloadOpenPages) { // FIXME: reload open pages } -#endif } } |