Home
last modified time | relevance | path

Searched refs:BeforeCommand (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/chrome/test/chromedriver/
Dcommand_listener_proxy.cc17 Status CommandListenerProxy::BeforeCommand(const std::string& command_name) { in BeforeCommand() function in CommandListenerProxy
18 return command_listener_->BeforeCommand(command_name); in BeforeCommand()
Dcommand_listener_proxy_unittest.cc20 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE { in BeforeCommand() function in __anon16ef0d8f0111::MockCommandListener
45 ASSERT_EQ(kOk, proxy.BeforeCommand("cmd").code()); in TEST()
Dcommand_listener.h19 virtual Status BeforeCommand(const std::string& command_name) = 0;
Dcommand_listener_proxy.h22 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE;
Dperformance_logger_unittest.cc301 ASSERT_EQ(kOk, logger.BeforeCommand("GetLog").code()); in TEST()
350 ASSERT_EQ(kOk, logger.BeforeCommand("Blah").code()); in TEST()
352 ASSERT_EQ(kOk, logger.BeforeCommand("Foo").code()); in TEST()
355 ASSERT_EQ(kOk, logger.BeforeCommand("GetLog").code()); in TEST()
Dperformance_logger.h54 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE;
Dperformance_logger.cc106 Status PerformanceLogger::BeforeCommand(const std::string& command_name) { in BeforeCommand() function in PerformanceLogger
Dcommands_unittest.cc558 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE { in BeforeCommand() function in __anon4c459bdc0811::MockCommandListener
665 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE { in BeforeCommand() function in __anon4c459bdc0911::FailingCommandListener
Dutil.cc416 Status status = (*it)->BeforeCommand(command_name); in NotifyCommandListenersBeforeCommand()