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

Unified Diff: webkit/tools/test_shell/layout_test_controller.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/layout_test_controller.h ('k') | webkit/tools/test_shell/test_shell.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/layout_test_controller.cc
===================================================================
--- webkit/tools/test_shell/layout_test_controller.cc (revision 12999)
+++ webkit/tools/test_shell/layout_test_controller.cc (working copy)
@@ -113,6 +113,8 @@
BindMethod("pauseTransitionAtTimeOnElementWithId", &LayoutTestController::pauseTransitionAtTimeOnElementWithId);
BindMethod("elementDoesAutoCompleteForElementWithId", &LayoutTestController::elementDoesAutoCompleteForElementWithId);
BindMethod("numberOfActiveAnimations", &LayoutTestController::numberOfActiveAnimations);
+ BindMethod("setCustomPolicyDelegate", &LayoutTestController::setCustomPolicyDelegate);
+ BindMethod("waitForPolicyDelegate", &LayoutTestController::waitForPolicyDelegate);
// The following are stubs.
BindMethod("dumpAsWebArchive", &LayoutTestController::dumpAsWebArchive);
@@ -130,7 +132,6 @@
BindMethod("setCallCloseOnWebViews", &LayoutTestController::setCallCloseOnWebViews);
BindMethod("setPrivateBrowsingEnabled", &LayoutTestController::setPrivateBrowsingEnabled);
BindMethod("setUseDashboardCompatibilityMode", &LayoutTestController::setUseDashboardCompatibilityMode);
- BindMethod("setCustomPolicyDelegate", &LayoutTestController::setCustomPolicyDelegate);
// This typo (missing 'i') is intentional as it matches the typo in the layout test
// see: LayoutTests/fast/canvas/fill-stroke-clip-reset-path.html.
@@ -454,6 +455,15 @@
work_queue_.ProcessWorkSoon();
}
+void LayoutTestController::PolicyDelegateDone() {
+ if (!shell_->layout_test_mode())
+ return;
+
+ DCHECK(wait_until_done_);
+ shell_->TestFinished();
+ wait_until_done_ = false;
+}
+
void LayoutTestController::setCanOpenWindows(
const CppArgumentList& args, CppVariant* result) {
can_open_windows_ = true;
@@ -560,12 +570,23 @@
void LayoutTestController::setCustomPolicyDelegate(
const CppArgumentList& args, CppVariant* result) {
if (args.size() > 0 && args[0].isBool()) {
- shell_->delegate()->SetCustomPolicyDelegate(args[0].value.boolValue);
+ bool enable = args[0].value.boolValue;
+ bool permissive = false;
+ if (args.size() > 1 && args[1].isBool())
+ permissive = args[1].value.boolValue;
+ shell_->delegate()->SetCustomPolicyDelegate(enable, permissive);
}
result->SetNull();
}
+void LayoutTestController::waitForPolicyDelegate(
+ const CppArgumentList& args, CppVariant* result) {
+ shell_->delegate()->WaitForPolicyDelegate();
+ wait_until_done_ = true;
+ result->SetNull();
+}
+
void LayoutTestController::pathToLocalResource(
const CppArgumentList& args, CppVariant* result) {
result->SetNull();
« no previous file with comments | « webkit/tools/test_shell/layout_test_controller.h ('k') | webkit/tools/test_shell/test_shell.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698