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_ | |
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, and SessionCommands. | |
19 virtual Status OnCommand(const std::string& command_name); | |
stgao
2014/06/15 23:54:40
How about renaming "OnCommand" to "BeforeCommand"?
stgao
2014/06/15 23:54:40
add " = 0" before ";"?
| |
20 }; | |
21 | |
22 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_LISTENER_H_ | |
OLD | NEW |