| Index: chrome/test/chromedriver/chrome/console_logger.h
|
| diff --git a/chrome/test/chromedriver/chrome/console_logger.h b/chrome/test/chromedriver/chrome/console_logger.h
|
| index f8a957edb62c1e06c7c46a7aba4f52156a4a1c69..5646408c6de8bdf143ea17a68b6db8a2a6a3e8f7 100644
|
| --- a/chrome/test/chromedriver/chrome/console_logger.h
|
| +++ b/chrome/test/chromedriver/chrome/console_logger.h
|
| @@ -24,11 +24,11 @@ class ConsoleLogger : public DevToolsEventListener {
|
| explicit ConsoleLogger(Log* log);
|
|
|
| // Enables Console events for the client, which must not be null.
|
| - virtual Status OnConnected(DevToolsClient* client) override;
|
| + Status OnConnected(DevToolsClient* client) override;
|
| // Translates an event into a log entry.
|
| - virtual Status OnEvent(DevToolsClient* client,
|
| - const std::string& method,
|
| - const base::DictionaryValue& params) override;
|
| + Status OnEvent(DevToolsClient* client,
|
| + const std::string& method,
|
| + const base::DictionaryValue& params) override;
|
|
|
| private:
|
| Log* log_; // The log where to create entries.
|
|
|