Chromium Code Reviews| Index: chrome/browser/ui/auto_login_infobar_delegate.h |
| diff --git a/chrome/browser/ui/auto_login_infobar_delegate.h b/chrome/browser/ui/auto_login_infobar_delegate.h |
| index 5064b06c90254ec4ff3812a55321773ad4968833..75216ca788cd41b12079c7fe913fa6944c534151 100644 |
| --- a/chrome/browser/ui/auto_login_infobar_delegate.h |
| +++ b/chrome/browser/ui/auto_login_infobar_delegate.h |
| @@ -38,10 +38,6 @@ class AutoLoginInfoBarDelegate : public ConfirmInfoBarDelegate, |
| static bool Create(content::WebContents* web_contents, const Params& params); |
| protected: |
| - AutoLoginInfoBarDelegate(const Params& params, Profile* profile); |
| - virtual ~AutoLoginInfoBarDelegate(); |
| - |
| - private: |
| // Enum values used for UMA histograms. |
| enum Actions { |
| SHOWN, // The infobar was shown to the user. |
| @@ -53,6 +49,11 @@ class AutoLoginInfoBarDelegate : public ConfirmInfoBarDelegate, |
| HISTOGRAM_BOUNDING_VALUE |
| }; |
| + AutoLoginInfoBarDelegate(const Params& params, Profile* profile); |
| + virtual ~AutoLoginInfoBarDelegate(); |
| + void RecordHistogramAction(Actions action); |
|
Peter Kasting
2014/04/28 21:28:33
Nit: Blank line above this
Ted C
2014/04/28 21:29:57
Done.
|
| + |
| + private: |
| // ConfirmInfoBarDelegate: |
| virtual void InfoBarDismissed() OVERRIDE; |
| virtual int GetIconID() const OVERRIDE; |
| @@ -66,8 +67,6 @@ class AutoLoginInfoBarDelegate : public ConfirmInfoBarDelegate, |
| // SigninManagerBase::Observer: |
| virtual void GoogleSignedOut(const std::string& username) OVERRIDE; |
| - void RecordHistogramAction(Actions action); |
| - |
| const Params params_; |
| Profile* profile_; |