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

Unified Diff: chrome/test/automation/automation_messages_internal.h

Issue 10282: Only block alert() requests from blocked popups; not all popups.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month 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
Index: chrome/test/automation/automation_messages_internal.h
===================================================================
--- chrome/test/automation/automation_messages_internal.h (revision 5108)
+++ chrome/test/automation/automation_messages_internal.h (working copy)
@@ -795,11 +795,16 @@
// This messages sets an int-value preference.
IPC_MESSAGE_ROUTED3(AutomationMsg_SetIntPreferenceRequest,
- int /* browser handle */,
+ int /* browser handle */,
std::wstring /* pref name */,
int /* value */)
IPC_MESSAGE_ROUTED1(AutomationMsg_SetIntPreferenceResponse,
bool /* success */)
+ // Querries whether an app modal dialog is currently being shown. (i.e. a
Finnur 2008/11/11 07:30:03 Queries (one r)
+ // javascript alert).
+ IPC_MESSAGE_ROUTED0(AutomationMsg_ShowingAppModalDialogRequest)
+ IPC_MESSAGE_ROUTED1(AutomationMsg_ShowingAppModalDialogResponse,
+ bool /* showning dialog */)
Finnur 2008/11/11 07:30:03 Showing (one n).
+
IPC_END_MESSAGES(Automation)
-

Powered by Google App Engine
This is Rietveld 408576698