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

Side by Side Diff: chrome/browser/infobars/insecure_content_infobar_delegate.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
7 7
8 #include "base/macros.h"
8 #include "components/infobars/core/confirm_infobar_delegate.h" 9 #include "components/infobars/core/confirm_infobar_delegate.h"
9 10
10 class InfoBarService; 11 class InfoBarService;
11 12
12 // Base class for delegates that show warnings on HTTPS pages which try to 13 // Base class for delegates that show warnings on HTTPS pages which try to
13 // display or run insecure content. 14 // display or run insecure content.
14 class InsecureContentInfoBarDelegate : public ConfirmInfoBarDelegate { 15 class InsecureContentInfoBarDelegate : public ConfirmInfoBarDelegate {
15 public: 16 public:
16 // Creates an insecure content infobar and delegate and adds the infobar to 17 // Creates an insecure content infobar and delegate and adds the infobar to
17 // |infobar_service|, replacing any existing insecure content infobar. 18 // |infobar_service|, replacing any existing insecure content infobar.
(...skipping 19 matching lines...) Expand all
37 bool Accept() override; 38 bool Accept() override;
38 bool Cancel() override; 39 bool Cancel() override;
39 base::string16 GetLinkText() const override; 40 base::string16 GetLinkText() const override;
40 GURL GetLinkURL() const override; 41 GURL GetLinkURL() const override;
41 42
42 DISALLOW_COPY_AND_ASSIGN(InsecureContentInfoBarDelegate); 43 DISALLOW_COPY_AND_ASSIGN(InsecureContentInfoBarDelegate);
43 }; 44 };
44 45
45 #endif // CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_ 46 #endif // CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
46 47
OLDNEW
« no previous file with comments | « chrome/browser/infobars/infobars_browsertest.cc ('k') | chrome/browser/infobars/insecure_content_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698