diff options
author | Leon Scroggins <scroggo@google.com> | 2011-02-01 14:31:00 -0500 |
---|---|---|
committer | Leon Scroggins <scroggo@google.com> | 2011-02-01 14:31:00 -0500 |
commit | 08c14f1deb3d7dc096fd06973ced1403df506a77 (patch) | |
tree | 5eecdad5db62700f18c6f46efb8f90ae6da35caa /WebKit/android/jni/WebCoreFrameBridge.h | |
parent | f0e9fcf1b8d55a3cd054aeb9393618161c48b719 (diff) | |
download | external_webkit-08c14f1deb3d7dc096fd06973ced1403df506a77.zip external_webkit-08c14f1deb3d7dc096fd06973ced1403df506a77.tar.gz external_webkit-08c14f1deb3d7dc096fd06973ced1403df506a77.tar.bz2 |
Remove unnecessary getter for userInitiatedAction.
Bug:3073288
Change-Id: I84fd4fe01271cb84454fc94387ae7d61e7ed76f3
Diffstat (limited to 'WebKit/android/jni/WebCoreFrameBridge.h')
-rw-r--r-- | WebKit/android/jni/WebCoreFrameBridge.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/WebKit/android/jni/WebCoreFrameBridge.h b/WebKit/android/jni/WebCoreFrameBridge.h index ae62835..c705227 100644 --- a/WebKit/android/jni/WebCoreFrameBridge.h +++ b/WebKit/android/jni/WebCoreFrameBridge.h @@ -128,15 +128,12 @@ class WebFrame : public WebCoreRefObject { void setCertificate(const std::string& issuedTo, const std::string& issuedBy, long long validNotBeforeMillis, long long validNotAfterMillis); /** - * When the user initiates an action (via trackball, key-press, or touch), - * 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. + * 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; } - bool userInitiatedAction() { return mUserInitiatedAction; } - WebCore::Page* page() const { return mPage; } // Currently used only by the chrome net stack. A similar field is used by |