diff options
author | Steve Block <steveblock@google.com> | 2009-10-12 11:13:15 +0100 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2009-10-20 00:45:05 +0100 |
commit | 035acba057f2c7a0f9dbdf27af5c67f80f1614f2 (patch) | |
tree | a7817eb657d7862aad8a9ac2b98fc619c3fdf47a /WebKit/android/jni | |
parent | 8667eaf175b0748a1d8783beeeecedfaa983a074 (diff) | |
download | external_webkit-035acba057f2c7a0f9dbdf27af5c67f80f1614f2.zip external_webkit-035acba057f2c7a0f9dbdf27af5c67f80f1614f2.tar.gz external_webkit-035acba057f2c7a0f9dbdf27af5c67f80f1614f2.tar.bz2 |
Merge webkit.org at R49305 : PolicyChecker is now factored out of FrameLoader.
See http://trac.webkit.org/changeset/49284
Change-Id: I2aafe6f747f22b9c51c0db60f13fb3352d373809
Diffstat (limited to 'WebKit/android/jni')
-rw-r--r-- | WebKit/android/jni/WebCoreFrameBridge.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/jni/WebCoreFrameBridge.cpp b/WebKit/android/jni/WebCoreFrameBridge.cpp index ff5b9df..215df37 100644 --- a/WebKit/android/jni/WebCoreFrameBridge.cpp +++ b/WebKit/android/jni/WebCoreFrameBridge.cpp @@ -861,7 +861,7 @@ static void CallPolicyFunction(JNIEnv* env, jobject obj, jint func, jint decisio if (decision == WebCore::PolicyUse) pFrame->loader()->resetMultipleFormSubmissionProtection(); - (pFrame->loader()->*(pFunc->func))((WebCore::PolicyAction)decision); + (pFrame->loader()->policyChecker()->*(pFunc->func))((WebCore::PolicyAction)decision); } static void CreateFrame(JNIEnv* env, jobject obj, jobject javaview, jobject jAssetManager, jobject historyList) |