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

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

Issue 625113002: replace OVERRIDE and FINAL with override and final in chrome/browser/[a-i]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix newly added OVERRIDEs Created 6 years, 2 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 "components/infobars/core/confirm_infobar_delegate.h" 8 #include "components/infobars/core/confirm_infobar_delegate.h"
9 9
10 class InfoBarService; 10 class InfoBarService;
(...skipping 23 matching lines...) Expand all
34 RUN_USER_OVERRIDE, 34 RUN_USER_OVERRIDE,
35 RUN_USER_DID_NOT_LOAD, 35 RUN_USER_DID_NOT_LOAD,
36 RUN_INFOBAR_DISMISSED, 36 RUN_INFOBAR_DISMISSED,
37 NUM_EVENTS 37 NUM_EVENTS
38 }; 38 };
39 39
40 explicit InsecureContentInfoBarDelegate(InfoBarType type); 40 explicit InsecureContentInfoBarDelegate(InfoBarType type);
41 virtual ~InsecureContentInfoBarDelegate(); 41 virtual ~InsecureContentInfoBarDelegate();
42 42
43 // ConfirmInfoBarDelegate: 43 // ConfirmInfoBarDelegate:
44 virtual void InfoBarDismissed() OVERRIDE; 44 virtual void InfoBarDismissed() override;
45 virtual InsecureContentInfoBarDelegate* 45 virtual InsecureContentInfoBarDelegate*
46 AsInsecureContentInfoBarDelegate() OVERRIDE; 46 AsInsecureContentInfoBarDelegate() override;
47 virtual base::string16 GetMessageText() const OVERRIDE; 47 virtual base::string16 GetMessageText() const override;
48 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE; 48 virtual base::string16 GetButtonLabel(InfoBarButton button) const override;
49 virtual bool Accept() OVERRIDE; 49 virtual bool Accept() override;
50 virtual bool Cancel() OVERRIDE; 50 virtual bool Cancel() override;
51 virtual base::string16 GetLinkText() const OVERRIDE; 51 virtual base::string16 GetLinkText() const override;
52 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; 52 virtual bool LinkClicked(WindowOpenDisposition disposition) override;
53 53
54 InfoBarType type_; 54 InfoBarType type_;
55 55
56 DISALLOW_IMPLICIT_CONSTRUCTORS(InsecureContentInfoBarDelegate); 56 DISALLOW_IMPLICIT_CONSTRUCTORS(InsecureContentInfoBarDelegate);
57 }; 57 };
58 58
59 #endif // CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_ 59 #endif // CHROME_BROWSER_INFOBARS_INSECURE_CONTENT_INFOBAR_DELEGATE_H_
60 60
OLDNEW
« no previous file with comments | « chrome/browser/infobars/infobar_service.h ('k') | chrome/browser/infobars/simple_alert_infobar_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698