| Index: chrome/browser/ui/views/toolbar/browser_actions_container_browsertest.cc
|
| diff --git a/chrome/browser/ui/views/toolbar/browser_actions_container_browsertest.cc b/chrome/browser/ui/views/toolbar/browser_actions_container_browsertest.cc
|
| index 2949596ffffd1dd8b53623e9dd5b66699b28f24f..601fff5dc663e4e5d8ce88668309ce5b7a78029d 100644
|
| --- a/chrome/browser/ui/views/toolbar/browser_actions_container_browsertest.cc
|
| +++ b/chrome/browser/ui/views/toolbar/browser_actions_container_browsertest.cc
|
| @@ -331,8 +331,7 @@ class BrowserActionsContainerOverflowTest
|
| public:
|
| BrowserActionsContainerOverflowTest() : main_bar_(NULL), model_(NULL) {
|
| }
|
| - virtual ~BrowserActionsContainerOverflowTest() {
|
| - }
|
| + ~BrowserActionsContainerOverflowTest() override {}
|
|
|
| protected:
|
| // Returns true if the order of the BrowserActionViews in |main_bar_|
|
| @@ -351,9 +350,9 @@ class BrowserActionsContainerOverflowTest
|
| extensions::ExtensionToolbarModel* model() { return model_; }
|
|
|
| private:
|
| - virtual void SetUpCommandLine(base::CommandLine* command_line) override;
|
| - virtual void SetUpOnMainThread() override;
|
| - virtual void TearDownOnMainThread() override;
|
| + void SetUpCommandLine(base::CommandLine* command_line) override;
|
| + void SetUpOnMainThread() override;
|
| + void TearDownOnMainThread() override;
|
|
|
| // The main BrowserActionsContainer (owned by the browser view).
|
| BrowserActionsContainer* main_bar_;
|
|
|