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

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

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_shell.cc ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_webview_delegate.h
===================================================================
--- webkit/tools/test_shell/test_webview_delegate.h (revision 12999)
+++ webkit/tools/test_shell/test_webview_delegate.h (working copy)
@@ -56,7 +56,9 @@
typedef std::vector<CapturedContextMenuEvent> CapturedContextMenuEvents;
TestWebViewDelegate(TestShell* shell)
- : is_custom_policy_delegate_(false),
+ : policy_delegate_enabled_(false),
+ policy_delegate_is_permissive_(false),
+ policy_delegate_should_notify_done_(false),
shell_(shell),
top_loading_frame_(NULL),
page_id_(-1),
@@ -204,7 +206,6 @@
WebNavigationType type,
WindowOpenDisposition disposition,
bool is_redirect);
- void SetCustomPolicyDelegate(bool isCustom);
virtual WebHistoryItem* GetHistoryEntryAtOffset(int offset);
virtual int GetHistoryBackListCount();
virtual int GetHistoryForwardListCount();
@@ -260,6 +261,9 @@
// Sets the webview as a drop target.
void RegisterDragDrop();
+ void SetCustomPolicyDelegate(bool is_custom, bool is_permissive);
+ void WaitForPolicyDelegate();
+
protected:
// Called the title of the page changes.
// Can be used to update the title of the window.
@@ -297,8 +301,15 @@
// Causes navigation actions just printout the intended navigation instead
// of taking you to the page. This is used for cases like mailto, where you
// don't actually want to open the mail program.
- bool is_custom_policy_delegate_;
+ bool policy_delegate_enabled_;
+ // Toggles the behavior of the policy delegate. If true, then navigations
+ // will be allowed. Otherwise, they will be ignored (dropped).
+ bool policy_delegate_is_permissive_;
+
+ // If true, the policy delegate will signal layout test completion.
+ bool policy_delegate_should_notify_done_;
+
// Non-owning pointer. The delegate is owned by the host.
TestShell* shell_;
« no previous file with comments | « webkit/tools/test_shell/test_shell.cc ('k') | webkit/tools/test_shell/test_webview_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698