diff options
author | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-08 19:21:17 +0000 |
---|---|---|
committer | johnnyg@chromium.org <johnnyg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-08 19:21:17 +0000 |
commit | 740da61e685cbaa4dd17a5dccc977f4771a2d8f7 (patch) | |
tree | 634a61cf326cf0336d2f4b86d654c41621c192e9 | |
parent | 6a25be1564442f4059d004d3cc984101a26d8fee (diff) | |
download | chromium_src-740da61e685cbaa4dd17a5dccc977f4771a2d8f7.zip chromium_src-740da61e685cbaa4dd17a5dccc977f4771a2d8f7.tar.gz chromium_src-740da61e685cbaa4dd17a5dccc977f4771a2d8f7.tar.bz2 |
Reverting 28422.
Review URL: http://codereview.chromium.org/270025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28423 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | DEPS | 2 | ||||
-rw-r--r-- | webkit/glue/webframeloaderclient_impl.cc | 8 | ||||
-rw-r--r-- | webkit/tools/layout_tests/test_expectations.txt | 9 |
3 files changed, 7 insertions, 12 deletions
@@ -1,7 +1,7 @@ vars = { "webkit_trunk": "http://svn.webkit.org/repository/webkit/trunk", - "webkit_revision": "49309", + "webkit_revision": "49278", "ffmpeg_revision": "27457", } diff --git a/webkit/glue/webframeloaderclient_impl.cc b/webkit/glue/webframeloaderclient_impl.cc index 8ee9f7c..4343fd8 100644 --- a/webkit/glue/webframeloaderclient_impl.cc +++ b/webkit/glue/webframeloaderclient_impl.cc @@ -759,7 +759,7 @@ void WebFrameLoaderClient::dispatchDecidePolicyForMIMEType( } // NOTE: ERR_POLICY_CHANGE will be generated when action is not PolicyUse. - (webframe_->frame()->loader()->policyChecker()->*function)(action); + (webframe_->frame()->loader()->*function)(action); } void WebFrameLoaderClient::dispatchDecidePolicyForNewWindowAction( @@ -784,7 +784,7 @@ void WebFrameLoaderClient::dispatchDecidePolicyForNewWindowAction( // to keep this state. next_navigation_policy_ = navigation_policy; } - (webframe_->frame()->loader()->policyChecker()->*function)(policy_action); + (webframe_->frame()->loader()->*function)(policy_action); } void WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction( @@ -836,7 +836,7 @@ void WebFrameLoaderClient::dispatchDecidePolicyForNavigationAction( } } - (webframe_->frame()->loader()->policyChecker()->*function)(policy_action); + (webframe_->frame()->loader()->*function)(policy_action); } void WebFrameLoaderClient::cancelPolicyCheck() { @@ -853,7 +853,7 @@ void WebFrameLoaderClient::dispatchWillSubmitForm(FramePolicyFunction function, webframe_->client()->willSubmitForm( webframe_, webkit_glue::HTMLFormElementToWebForm(form_ref->form())); } - (webframe_->frame()->loader()->policyChecker()->*function)(PolicyUse); + (webframe_->frame()->loader()->*function)(PolicyUse); } void WebFrameLoaderClient::dispatchDidLoadMainResource(DocumentLoader*) { diff --git a/webkit/tools/layout_tests/test_expectations.txt b/webkit/tools/layout_tests/test_expectations.txt index d15eaea..75686887 100644 --- a/webkit/tools/layout_tests/test_expectations.txt +++ b/webkit/tools/layout_tests/test_expectations.txt @@ -716,7 +716,7 @@ BUG4363 LINUX MAC SKIP : LayoutTests/http/tests/security/local-video-src-from-re BUG13907 SKIP : LayoutTests/accessibility/media-element.html = TIMEOUT BUG13907 SKIP : LayoutTests/http/tests/security/local-video-source-from-remote.html = FAIL BUG13907 SKIP : LayoutTests/http/tests/media = FAIL -BUG13907 : LayoutTests/media/audio-constructor-autobuffer.html = FAIL TIMEOUT +BUG13907 : LayoutTests/media/audio-constructor-autobuffer.html = FAIL BUG13907 : LayoutTests/media/audio-constructor-src.html = TIMEOUT BUG13907 : LayoutTests/media/audio-delete-while-slider-thumb-clicked.html = PASS FAIL CRASH BUG13907 : LayoutTests/media/audio-delete-while-step-button-clicked.html = FAIL @@ -3141,14 +3141,9 @@ BUG_AA : LayoutTests/http/tests/security/isolatedWorld/string-prototype.html = F BUG_AA : LayoutTests/http/tests/security/isolatedWorld/window-properties.html = FAIL BUG_AA : LayoutTests/http/tests/security/isolatedWorld/window-setTimeout-function.html = TIMEOUT BUG_AA : LayoutTests/http/tests/security/isolatedWorld/window-setTimeout-string.html = TIMEOUT +BUG_AA SKIP : LayoutTests/http/tests/security/isolatedWorld/iframe.html = FAIL BUG_JOHNNYG : LayoutTests/http/tests/globalhistory/history-delegate-basic-title.html = FAIL BUG_JOHNNYG WIN DEBUG : LayoutTests/fast/frames/onlyCommentInIFrame.html = FAIL BUG_24308 MAC : LayoutTests/http/tests/navigation/back-send-referrer.html = PASS TIMEOUT - -// Webkit roll 49278-49309 -BUG_JOHNNYG : LayoutTests/media/media-load-event.html = FAIL -BUG_JOHNNYG : LayoutTests/media/progress-event-at-least-one.html = FAIL -BUG_JOHNNYG : LayoutTests/media/audio-constructor.html = TIMEOUT - |