| Index: chrome/test/chromedriver/chrome/navigation_tracker.h
|
| diff --git a/chrome/test/chromedriver/chrome/navigation_tracker.h b/chrome/test/chromedriver/chrome/navigation_tracker.h
|
| index f309c59feb34d2c9e0bafea6436f9ee986f6331e..a75a094178026570a29aabd2c0bce8fa448bf4e3 100644
|
| --- a/chrome/test/chromedriver/chrome/navigation_tracker.h
|
| +++ b/chrome/test/chromedriver/chrome/navigation_tracker.h
|
| @@ -37,19 +37,19 @@ class NavigationTracker : public DevToolsEventListener {
|
| LoadingState known_state,
|
| const BrowserInfo* browser_info);
|
|
|
| - virtual ~NavigationTracker();
|
| + ~NavigationTracker() override;
|
|
|
| // Gets whether a navigation is pending for the specified frame. |frame_id|
|
| // may be empty to signify the main frame.
|
| Status IsPendingNavigation(const std::string& frame_id, bool* is_pending);
|
|
|
| // Overridden from DevToolsEventListener:
|
| - virtual Status OnConnected(DevToolsClient* client) override;
|
| - virtual Status OnEvent(DevToolsClient* client,
|
| - const std::string& method,
|
| - const base::DictionaryValue& params) override;
|
| - virtual Status OnCommandSuccess(DevToolsClient* client,
|
| - const std::string& method) override;
|
| + Status OnConnected(DevToolsClient* client) override;
|
| + Status OnEvent(DevToolsClient* client,
|
| + const std::string& method,
|
| + const base::DictionaryValue& params) override;
|
| + Status OnCommandSuccess(DevToolsClient* client,
|
| + const std::string& method) override;
|
|
|
| private:
|
| DevToolsClient* client_;
|
|
|