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

Side by Side Diff: chrome/browser/pepper_broker_infobar_delegate.h

Issue 2711623003: Update infobars to use VectorIcon struct instead of VectorIconId. (Closed)
Patch Set: rebase Created 3 years, 9 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_PEPPER_BROKER_INFOBAR_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_
6 #define CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ 6 #define CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 25 matching lines...) Expand all
36 private: 36 private:
37 PepperBrokerInfoBarDelegate(const GURL& url, 37 PepperBrokerInfoBarDelegate(const GURL& url,
38 const base::FilePath& plugin_path, 38 const base::FilePath& plugin_path,
39 HostContentSettingsMap* content_settings, 39 HostContentSettingsMap* content_settings,
40 TabSpecificContentSettings* tab_content_settings, 40 TabSpecificContentSettings* tab_content_settings,
41 const base::Callback<void(bool)>& callback); 41 const base::Callback<void(bool)>& callback);
42 ~PepperBrokerInfoBarDelegate() override; 42 ~PepperBrokerInfoBarDelegate() override;
43 43
44 // ConfirmInfoBarDelegate: 44 // ConfirmInfoBarDelegate:
45 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override; 45 infobars::InfoBarDelegate::InfoBarIdentifier GetIdentifier() const override;
46 gfx::VectorIconId GetVectorIconId() const override; 46 const gfx::VectorIcon& GetVectorIcon() const override;
47 base::string16 GetMessageText() const override; 47 base::string16 GetMessageText() const override;
48 base::string16 GetButtonLabel(InfoBarButton button) const override; 48 base::string16 GetButtonLabel(InfoBarButton button) const override;
49 bool Accept() override; 49 bool Accept() override;
50 bool Cancel() override; 50 bool Cancel() override;
51 base::string16 GetLinkText() const override; 51 base::string16 GetLinkText() const override;
52 GURL GetLinkURL() const override; 52 GURL GetLinkURL() const override;
53 53
54 void DispatchCallback(bool result); 54 void DispatchCallback(bool result);
55 55
56 const GURL url_; 56 const GURL url_;
57 const base::FilePath plugin_path_; 57 const base::FilePath plugin_path_;
58 HostContentSettingsMap* content_settings_; 58 HostContentSettingsMap* content_settings_;
59 TabSpecificContentSettings* tab_content_settings_; 59 TabSpecificContentSettings* tab_content_settings_;
60 base::Callback<void(bool)> callback_; 60 base::Callback<void(bool)> callback_;
61 61
62 DISALLOW_COPY_AND_ASSIGN(PepperBrokerInfoBarDelegate); 62 DISALLOW_COPY_AND_ASSIGN(PepperBrokerInfoBarDelegate);
63 }; 63 };
64 64
65 #endif // CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_ 65 #endif // CHROME_BROWSER_PEPPER_BROKER_INFOBAR_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/theme_installed_infobar_delegate.cc ('k') | chrome/browser/pepper_broker_infobar_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698