OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CHROME_TEST_CHROMEDRIVER_COMMAND_LISTENER_H_ | |
johnmoore
2014/06/20 18:47:53
I've realized that anything in chromedriver/chrome
stgao
2014/06/20 22:36:49
We'd better still separate chromedriver/chrome/ en
| |
6 #define CHROME_TEST_CHROMEDRIVER_COMMAND_LISTENER_H_ | |
7 | |
8 #include <string> | |
9 | |
10 class Status; | |
11 | |
12 class CommandListener { | |
13 public: | |
14 virtual ~CommandListener() {} | |
15 | |
16 // Called just before a WebDriver command is run, but only | |
17 // for commands that operate on an existing session. Will be called for | |
18 // WindowCommands, ElementCommands, SessionCommands, and AlertCommands. | |
19 virtual Status BeforeCommand(const std::string& command_name) = 0; | |
20 }; | |
21 | |
22 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_LISTENER_H_ | |
OLD | NEW |