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

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

Issue 6507015: Implement the target locator commands for ChromeDriver. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use bool success instead of handle != 0 Created 9 years, 10 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 // while performing stress testing. 1443 // while performing stress testing.
1444 IPC_MESSAGE_ROUTED3(AutomationMsg_JavaScriptStressTestControl, 1444 IPC_MESSAGE_ROUTED3(AutomationMsg_JavaScriptStressTestControl,
1445 int /* tab handle */, 1445 int /* tab handle */,
1446 int /* command */, 1446 int /* command */,
1447 int /* type or run */) 1447 int /* type or run */)
1448 1448
1449 // This message posts a task to the PROCESS_LAUNCHER thread. Once processed 1449 // This message posts a task to the PROCESS_LAUNCHER thread. Once processed
1450 // the response is sent back. This is useful when you want to make sure all 1450 // the response is sent back. This is useful when you want to make sure all
1451 // changes to the number of processes have completed. 1451 // changes to the number of processes have completed.
1452 IPC_SYNC_MESSAGE_CONTROL0_0(AutomationMsg_WaitForProcessLauncherThreadToGoIdle) 1452 IPC_SYNC_MESSAGE_CONTROL0_0(AutomationMsg_WaitForProcessLauncherThreadToGoIdle)
1453
1454 // Gets a handle of the browser that owns the given tab.
1455 IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_GetParentBrowserOfTab,
1456 int /* tab handle */,
1457 int /* browser handle */,
1458 bool /* success */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698