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

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

Issue 2280003: Use IPC to wait for download in DownloadTest. (Closed) Base URL: git://codf21.jail.google.com/chromium.git
Patch Set: Fix compile error. Created 10 years, 7 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
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/test/automation/browser_proxy.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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 WindowOpenDisposition, 1389 WindowOpenDisposition,
1390 bool /* result */) 1390 bool /* result */)
1391 1391
1392 1392
1393 // This message requests the cookie be delete for given url in the 1393 // This message requests the cookie be delete for given url in the
1394 // profile of the tab identified by the first parameter. The second 1394 // profile of the tab identified by the first parameter. The second
1395 // parameter is the cookie name. 1395 // parameter is the cookie name.
1396 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_DeleteCookie, GURL, std::string, 1396 IPC_SYNC_MESSAGE_ROUTED3_1(AutomationMsg_DeleteCookie, GURL, std::string,
1397 int, bool) 1397 int, bool)
1398 1398
1399 // Waits for the download shelf to appear or disappear (depending on
1400 // |visibility|) and sets |success| to true on success.
1401 IPC_SYNC_MESSAGE_ROUTED2_1(AutomationMsg_WaitForDownloadShelfVisibilityChange,
1402 int /* browser handle */,
1403 bool /* visibility */,
1404 bool /* success */)
1405
1399 IPC_END_MESSAGES(Automation) 1406 IPC_END_MESSAGES(Automation)
OLDNEW
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/test/automation/browser_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698