summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h')
-rw-r--r--WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
index ddf0deb..2fb552c 100644
--- a/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
+++ b/WebKit/android/WebCoreSupport/FrameLoaderClientAndroid.h
@@ -31,6 +31,10 @@
#include "ResourceResponse.h"
#include "WebIconDatabase.h"
+namespace WebCore {
+class PluginManualLoader;
+}
+
using namespace WebCore;
namespace android {
@@ -205,9 +209,11 @@ namespace android {
// FIXME: this doesn't really go here, but it's better than Frame
CacheBuilder& getCacheBuilder() { return m_cacheBuilder; }
private:
- CacheBuilder m_cacheBuilder;
+ CacheBuilder m_cacheBuilder;
Frame* m_frame;
- WebFrame* m_webFrame;
+ WebFrame* m_webFrame;
+ PluginManualLoader* m_manualLoader;
+ bool m_hasSentResponseToPlugin;
enum ResourceErrors {
InternalErrorCancelled = -99,