summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/android/jni/WebCoreFrameBridge.h
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-04-03 14:08:07 -0700
committerJohn Reck <jreck@google.com>2012-04-11 12:49:58 -0700
commit3d7cd084287f1dbc9fee600bf72af88c588a6429 (patch)
tree476fc13a5d4df0ffd793537fef8d7ee040d83061 /Source/WebKit/android/jni/WebCoreFrameBridge.h
parent76088175b1505b9730f9a01f4c677641cef72e3a (diff)
downloadexternal_webkit-3d7cd084287f1dbc9fee600bf72af88c588a6429.zip
external_webkit-3d7cd084287f1dbc9fee600bf72af88c588a6429.tar.gz
external_webkit-3d7cd084287f1dbc9fee600bf72af88c588a6429.tar.bz2
New touch input support
Bug: 6317798 Change-Id: Idea47af14e282b42c902c8158f08f6742ba576da
Diffstat (limited to 'Source/WebKit/android/jni/WebCoreFrameBridge.h')
-rw-r--r--Source/WebKit/android/jni/WebCoreFrameBridge.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Source/WebKit/android/jni/WebCoreFrameBridge.h b/Source/WebKit/android/jni/WebCoreFrameBridge.h
index 13f99af..30c1d83 100644
--- a/Source/WebKit/android/jni/WebCoreFrameBridge.h
+++ b/Source/WebKit/android/jni/WebCoreFrameBridge.h
@@ -128,13 +128,6 @@ class WebFrame : public WebCoreRefObject {
// application.
void autoLogin(const std::string& loginHeader);
- /**
- * When the user initiates a click, we set mUserInitiatedAction to true.
- * If a load happens due to this click, then we ask the application if it wants
- * to override the load. Otherwise, we attempt to load the resource internally.
- */
- void setUserInitiatedAction(bool userInitiatedAction) { mUserInitiatedAction = userInitiatedAction; }
-
WebCore::Page* page() const { return mPage; }
// Currently used only by the chrome net stack. A similar field is used by
@@ -163,7 +156,6 @@ class WebFrame : public WebCoreRefObject {
WebCore::Page* mPage;
WTF::String mUserAgent;
bool mBlockNetworkLoads;
- bool mUserInitiatedAction;
WebCore::RenderSkinAndroid* m_renderSkins;
};