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

Side by Side Diff: chrome/common/automation_messages_internal.h

Issue 4758001: Part 2 of reapplying r64637. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Window recompile after rebase? Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/automation_messages.cc ('k') | chrome/test/automation/autocomplete_edit_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Defines the IPC messages used by the automation interface. 5 // Defines the IPC messages used by the automation interface.
6 6
7 // This header is meant to be included in multiple passes, hence no traditional 7 // This header is meant to be included in multiple passes, hence no traditional
8 // header guard. 8 // header guard.
9 // See ipc_message_macros.h for explanation of the macros and passes. 9 // See ipc_message_macros.h for explanation of the macros and passes.
10 10
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after
605 SecurityStyle, 605 SecurityStyle,
606 int, 606 int,
607 int) 607 int)
608 608
609 // This message requests the page type of the page displayed in the specified 609 // This message requests the page type of the page displayed in the specified
610 // tab (normal, error or interstitial). 610 // tab (normal, error or interstitial).
611 // Request: 611 // Request:
612 // - int: handle of the tab 612 // - int: handle of the tab
613 // Response: 613 // Response:
614 // - bool: whether the operation was successful. 614 // - bool: whether the operation was successful.
615 // - NavigationEntry::PageType: the type of the page currently displayed. 615 // - PageType: the type of the page currently displayed.
616 IPC_SYNC_MESSAGE_ROUTED1_2(AutomationMsg_GetPageType, int, bool, 616 IPC_SYNC_MESSAGE_ROUTED1_2(AutomationMsg_GetPageType, int, bool,
617 NavigationEntry::PageType) 617 NavigationEntry::PageType)
618 618
619 // This message simulates the user action on the SSL blocking page showing in 619 // This message simulates the user action on the SSL blocking page showing in
620 // the specified tab. This message is only effective if an interstitial page 620 // the specified tab. This message is only effective if an interstitial page
621 // is showing in the tab. 621 // is showing in the tab.
622 // Request: 622 // Request:
623 // - int: handle of the tab 623 // - int: handle of the tab
624 // - bool: whether to proceed or abort the navigation 624 // - bool: whether to proceed or abort the navigation
625 // Response: 625 // Response:
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_WaitForAutocompleteEditFocus, 1442 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_WaitForAutocompleteEditFocus,
1443 int /* autocomplete edit handle */, 1443 int /* autocomplete edit handle */,
1444 bool /* success */) 1444 bool /* success */)
1445 1445
1446 // Loads all blocked plug-ins on the page. 1446 // Loads all blocked plug-ins on the page.
1447 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_LoadBlockedPlugins, 1447 IPC_SYNC_MESSAGE_ROUTED1_1(AutomationMsg_LoadBlockedPlugins,
1448 int /* tab handle */, 1448 int /* tab handle */,
1449 bool /* success */) 1449 bool /* success */)
1450 1450
1451 IPC_END_MESSAGES(Automation) 1451 IPC_END_MESSAGES(Automation)
OLDNEW
« no previous file with comments | « chrome/common/automation_messages.cc ('k') | chrome/test/automation/autocomplete_edit_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698