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

Side by Side Diff: chrome/test/chromedriver/command_listener.h

Issue 353063005: [ChromeDriver] Subscribe PerformanceLogger to CommandListener interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing unnecessary check in test Created 6 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
OLDNEW
(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, SessionCommands, and AlertCommands.
19 virtual Status BeforeCommand(const std::string& command_name) = 0;
20 };
21
22 #endif // CHROME_TEST_CHROMEDRIVER_COMMAND_LISTENER_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/chrome/performance_logger_unittest.cc ('k') | chrome/test/chromedriver/command_listener_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698