| Index: chrome/browser/ui/views/autofill/save_card_icon_view.h
|
| diff --git a/chrome/browser/ui/views/autofill/save_card_icon_view.h b/chrome/browser/ui/views/autofill/save_card_icon_view.h
|
| index d2a6d03c1d761032c7c1f0e0189e08fb23e8b1f5..3e611db04e8d5b73e56079c840ea8163e570e4b9 100644
|
| --- a/chrome/browser/ui/views/autofill/save_card_icon_view.h
|
| +++ b/chrome/browser/ui/views/autofill/save_card_icon_view.h
|
| @@ -6,7 +6,6 @@
|
| #define CHROME_BROWSER_UI_VIEWS_AUTOFILL_SAVE_CARD_ICON_VIEW_H_
|
|
|
| #include "base/macros.h"
|
| -#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
|
| #include "chrome/browser/ui/views/location_bar/bubble_icon_view.h"
|
|
|
| class Browser;
|
| @@ -19,7 +18,7 @@ class SaveCardBubbleControllerImpl;
|
| // The location bar icon to show the Save Credit Card bubble where the user can
|
| // choose to save the credit card info to use again later without re-entering
|
| // it.
|
| -class SaveCardIconView : public BubbleIconView, public TabStripModelObserver {
|
| +class SaveCardIconView : public BubbleIconView {
|
| public:
|
| explicit SaveCardIconView(CommandUpdater* command_updater, Browser* browser);
|
| ~SaveCardIconView() override;
|
| @@ -30,9 +29,6 @@ class SaveCardIconView : public BubbleIconView, public TabStripModelObserver {
|
| views::BubbleDialogDelegateView* GetBubble() const override;
|
| gfx::VectorIconId GetVectorIcon() const override;
|
|
|
| - // TabStripModelObserver:
|
| - void TabDeactivated(content::WebContents* contents) override;
|
| -
|
| private:
|
| SaveCardBubbleControllerImpl* GetController() const;
|
|
|
|
|