Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: chrome/browser/ui/auto_login_infobar_delegate.h

Issue 922953002: Minor infobar cleanup. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resync Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_AUTO_LOGIN_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_AUTO_LOGIN_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_UI_AUTO_LOGIN_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_AUTO_LOGIN_INFOBAR_DELEGATE_H_
7 7
8 #include <string> 8 #include <string>
9 #include "components/auto_login_parser/auto_login_parser.h" 9 #include "components/auto_login_parser/auto_login_parser.h"
10 #include "components/infobars/core/confirm_infobar_delegate.h" 10 #include "components/infobars/core/confirm_infobar_delegate.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 HISTOGRAM_BOUNDING_VALUE 49 HISTOGRAM_BOUNDING_VALUE
50 }; 50 };
51 51
52 AutoLoginInfoBarDelegate(const Params& params, Profile* profile); 52 AutoLoginInfoBarDelegate(const Params& params, Profile* profile);
53 ~AutoLoginInfoBarDelegate() override; 53 ~AutoLoginInfoBarDelegate() override;
54 54
55 void RecordHistogramAction(Actions action); 55 void RecordHistogramAction(Actions action);
56 56
57 private: 57 private:
58 // ConfirmInfoBarDelegate: 58 // ConfirmInfoBarDelegate:
59 Type GetInfoBarType() const override;
60 int GetIconID() const override;
59 void InfoBarDismissed() override; 61 void InfoBarDismissed() override;
60 int GetIconID() const override;
61 Type GetInfoBarType() const override;
62 AutoLoginInfoBarDelegate* AsAutoLoginInfoBarDelegate() override; 62 AutoLoginInfoBarDelegate* AsAutoLoginInfoBarDelegate() override;
63 base::string16 GetMessageText() const override; 63 base::string16 GetMessageText() const override;
64 base::string16 GetButtonLabel(InfoBarButton button) const override; 64 base::string16 GetButtonLabel(InfoBarButton button) const override;
65 bool Accept() override; 65 bool Accept() override;
66 bool Cancel() override; 66 bool Cancel() override;
67 67
68 // SigninManagerBase::Observer: 68 // SigninManagerBase::Observer:
69 void GoogleSignedOut(const std::string& account_id, 69 void GoogleSignedOut(const std::string& account_id,
70 const std::string& username) override; 70 const std::string& username) override;
71 71
72 const Params params_; 72 const Params params_;
73 73
74 Profile* profile_; 74 Profile* profile_;
75 75
76 // Whether any UI controls in the infobar were pressed or not. 76 // Whether any UI controls in the infobar were pressed or not.
77 bool button_pressed_; 77 bool button_pressed_;
78 78
79 DISALLOW_COPY_AND_ASSIGN(AutoLoginInfoBarDelegate); 79 DISALLOW_COPY_AND_ASSIGN(AutoLoginInfoBarDelegate);
80 }; 80 };
81 81
82 #endif // CHROME_BROWSER_UI_AUTO_LOGIN_INFOBAR_DELEGATE_H_ 82 #endif // CHROME_BROWSER_UI_AUTO_LOGIN_INFOBAR_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ssl/ssl_add_certificate.cc ('k') | chrome/browser/ui/auto_login_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698