| Index: chrome/browser/ui/tabs/tab_strip_model.cc
|
| diff --git a/chrome/browser/ui/tabs/tab_strip_model.cc b/chrome/browser/ui/tabs/tab_strip_model.cc
|
| index b5492214c77e54de2755bcbf9f80ff55c8a32ecd..5fa230a0174e3ee1b4c84045ade31f89bf38709b 100644
|
| --- a/chrome/browser/ui/tabs/tab_strip_model.cc
|
| +++ b/chrome/browser/ui/tabs/tab_strip_model.cc
|
| @@ -71,7 +71,7 @@ class CloseTracker {
|
|
|
| private:
|
| // WebContentsObserver:
|
| - virtual void WebContentsDestroyed() override {
|
| + void WebContentsDestroyed() override {
|
| parent_->OnWebContentsDestroyed(this);
|
| }
|
|
|
| @@ -159,7 +159,7 @@ class TabStripModel::WebContentsData : public content::WebContentsObserver {
|
| private:
|
| // Make sure that if someone deletes this WebContents out from under us, it
|
| // is properly removed from the tab strip.
|
| - virtual void WebContentsDestroyed() override;
|
| + void WebContentsDestroyed() override;
|
|
|
| // The WebContents being tracked by this WebContentsData. The
|
| // WebContentsObserver does keep a reference, but when the WebContents is
|
|
|