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

Side by Side Diff: chrome/test/automation/automation_messages_internal.h

Issue 3014001: ChromeFrame tabs would hang at times while closing. This would randomly occur... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome_frame/chrome_frame_activex_base.h » ('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 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after
1397 int, bool) 1397 int, bool)
1398 1398
1399 // This message requests the external tab identified by the tab handle 1399 // This message requests the external tab identified by the tab handle
1400 // passed in be closed. 1400 // passed in be closed.
1401 // Request: 1401 // Request:
1402 // -int: Tab handle 1402 // -int: Tab handle
1403 // Response: 1403 // Response:
1404 // None expected 1404 // None expected
1405 IPC_MESSAGE_ROUTED1(AutomationMsg_CloseExternalTab, int) 1405 IPC_MESSAGE_ROUTED1(AutomationMsg_CloseExternalTab, int)
1406 1406
1407 // This message requests that the external tab identified by the tab handle
1408 // runs unload handlers if any on the current page.
1409 // Request:
1410 // -int: Tab handle
1411 // -gfx::NativeWindow: notification window
1412 // -int: notification message.
1413 // Response:
1414 // None expected
1415 IPC_MESSAGE_ROUTED3(AutomationMsg_RunUnloadHandlers, int, gfx::NativeWindow,
1416 int)
1417
1407 IPC_END_MESSAGES(Automation) 1418 IPC_END_MESSAGES(Automation)
OLDNEW
« no previous file with comments | « chrome/browser/external_tab_container_win.cc ('k') | chrome_frame/chrome_frame_activex_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698