Index: webkit/tools/test_shell/layout_test_controller.h |
=================================================================== |
--- webkit/tools/test_shell/layout_test_controller.h (revision 12999) |
+++ webkit/tools/test_shell/layout_test_controller.h (working copy) |
@@ -110,6 +110,9 @@ |
// don't actually want to open the mail program. |
void setCustomPolicyDelegate(const CppArgumentList& args, CppVariant* result); |
+ // Delays completion of the test until the policy delegate runs. |
+ void waitForPolicyDelegate(const CppArgumentList& args, CppVariant* result); |
+ |
// Converts a URL starting with file:///tmp/ to the local mapping. |
void pathToLocalResource(const CppArgumentList& args, CppVariant* result); |
@@ -206,6 +209,10 @@ |
// Called by the webview delegate when the toplevel frame load is done. |
void LocationChangeDone(); |
+ // Called by the webview delegate when the policy delegate runs if the |
+ // waitForPolicyDelegate was called. |
+ void PolicyDelegateDone(); |
+ |
// Reinitializes all static values. The Reset() method should be called |
// before the start of each test (currently from |
// TestShell::RunFileTest). |