Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: webkit/tools/test_shell/test_webview_delegate.cc

Issue 56169: Fix fast/loader/reload-policy-delegate.html... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/tools/test_shell/test_webview_delegate.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_webview_delegate.cc
===================================================================
--- webkit/tools/test_shell/test_webview_delegate.cc (revision 12999)
+++ webkit/tools/test_shell/test_webview_delegate.cc (working copy)
@@ -136,22 +136,27 @@
WebNavigationType type,
WindowOpenDisposition disposition,
bool is_redirect) {
- if (is_custom_policy_delegate_) {
+ WindowOpenDisposition result;
+ if (policy_delegate_enabled_) {
std::wstring frame_name = frame->GetName();
+ std::string url_description;
+ if (request->GetURL().SchemeIs("file")) {
+ url_description = request->GetURL().ExtractFileName();
+ } else {
+ url_description = request->GetURL().spec();
+ }
printf("Policy delegate: attempt to load %s with navigation type '%s'\n",
- request->GetURL().spec().c_str(), WebNavigationTypeToString(type));
- return IGNORE_ACTION;
+ url_description.c_str(), WebNavigationTypeToString(type));
+ result = policy_delegate_is_permissive_ ? CURRENT_TAB : IGNORE_ACTION;
+ if (policy_delegate_should_notify_done_)
+ shell_->layout_test_controller()->PolicyDelegateDone();
} else {
- return WebViewDelegate::DispositionForNavigationAction(
- webview, frame, request, type, disposition, is_redirect);
+ result = WebViewDelegate::DispositionForNavigationAction(
+ webview, frame, request, type, disposition, is_redirect);
}
+ return result;
}
-
-void TestWebViewDelegate::SetCustomPolicyDelegate(bool isCustom) {
- is_custom_policy_delegate_ = isCustom;
-}
-
void TestWebViewDelegate::AssignIdentifierToRequest(WebView* webview,
uint32 identifier,
const WebRequest& request) {
@@ -747,6 +752,17 @@
#endif
}
+void TestWebViewDelegate::SetCustomPolicyDelegate(bool is_custom,
+ bool is_permissive) {
+ policy_delegate_enabled_ = is_custom;
+ policy_delegate_is_permissive_ = is_permissive;
+}
+
+void TestWebViewDelegate::WaitForPolicyDelegate() {
+ policy_delegate_enabled_ = true;
+ policy_delegate_should_notify_done_ = true;
+}
+
// Private methods -----------------------------------------------------------
void TestWebViewDelegate::UpdateAddressBar(WebView* webView) {
« no previous file with comments | « webkit/tools/test_shell/test_webview_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698