HomeSort by relevance Sort by last modified time
    Searched refs:BeforeCommand (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/test/chromedriver/
command_listener_proxy.cc 17 Status CommandListenerProxy::BeforeCommand(const std::string& command_name) {
18 return command_listener_->BeforeCommand(command_name);
command_listener.h 19 virtual Status BeforeCommand(const std::string& command_name) = 0;
command_listener_proxy.h 22 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE;
command_listener_proxy_unittest.cc 20 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE {
45 ASSERT_EQ(kOk, proxy.BeforeCommand("cmd").code());
performance_logger.h 54 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE;
performance_logger_unittest.cc 301 ASSERT_EQ(kOk, logger.BeforeCommand("GetLog").code());
350 ASSERT_EQ(kOk, logger.BeforeCommand("Blah").code());
352 ASSERT_EQ(kOk, logger.BeforeCommand("Foo").code());
355 ASSERT_EQ(kOk, logger.BeforeCommand("GetLog").code());
performance_logger.cc 106 Status PerformanceLogger::BeforeCommand(const std::string& command_name) {
util.cc 416 Status status = (*it)->BeforeCommand(command_name);
commands_unittest.cc 558 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE {
665 virtual Status BeforeCommand(const std::string& command_name) OVERRIDE {
703 // In SuccessNotifyingCommandListenersBeforeCommand, we verified BeforeCommand
712 // The command should never be executed if BeforeCommand fails for a listener.

Completed in 115 milliseconds