| OLD | NEW |
| 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_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGAT
E_H_ | 5 #ifndef CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGAT
E_H_ |
| 6 #define CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGAT
E_H_ | 6 #define CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGAT
E_H_ |
| 7 | 7 |
| 8 #include "base/strings/string16.h" | 8 #include "base/strings/string16.h" |
| 9 #include "chrome/browser/infobars/confirm_infobar_delegate.h" | 9 #include "chrome/browser/infobars/content_confirm_infobar_delegate.h" |
| 10 #include "chrome/common/custom_handlers/protocol_handler.h" | 10 #include "chrome/common/custom_handlers/protocol_handler.h" |
| 11 | 11 |
| 12 class InfoBarService; | 12 class InfoBarService; |
| 13 class ProtocolHandlerRegistry; | 13 class ProtocolHandlerRegistry; |
| 14 | 14 |
| 15 // An InfoBar delegate that enables the user to allow or deny storing credit | 15 // An InfoBar delegate that enables the user to allow or deny storing credit |
| 16 // card information gathered from a form submission. | 16 // card information gathered from a form submission. |
| 17 class RegisterProtocolHandlerInfoBarDelegate : public ConfirmInfoBarDelegate { | 17 class RegisterProtocolHandlerInfoBarDelegate |
| 18 : public ContentConfirmInfoBarDelegate { |
| 18 public: | 19 public: |
| 19 // Creates a new register protocol handler infobar and delegate. Searches | 20 // Creates a new register protocol handler infobar and delegate. Searches |
| 20 // |infobar_service| for an existing infobar for the same |handler|; replaces | 21 // |infobar_service| for an existing infobar for the same |handler|; replaces |
| 21 // it with the new infobar if found, otherwise adds the new infobar to | 22 // it with the new infobar if found, otherwise adds the new infobar to |
| 22 // |infobar_service|. | 23 // |infobar_service|. |
| 23 static void Create(InfoBarService* infobar_service, | 24 static void Create(InfoBarService* infobar_service, |
| 24 ProtocolHandlerRegistry* registry, | 25 ProtocolHandlerRegistry* registry, |
| 25 const ProtocolHandler& handler); | 26 const ProtocolHandler& handler); |
| 26 | 27 |
| 27 private: | 28 private: |
| 28 RegisterProtocolHandlerInfoBarDelegate(ProtocolHandlerRegistry* registry, | 29 RegisterProtocolHandlerInfoBarDelegate(content::WebContents* web_contents, |
| 30 ProtocolHandlerRegistry* registry, |
| 29 const ProtocolHandler& handler); | 31 const ProtocolHandler& handler); |
| 30 virtual ~RegisterProtocolHandlerInfoBarDelegate(); | 32 virtual ~RegisterProtocolHandlerInfoBarDelegate(); |
| 31 | 33 |
| 32 // ConfirmInfoBarDelegate: | 34 // ConfirmInfoBarDelegate: |
| 33 virtual InfoBarAutomationType GetInfoBarAutomationType() const OVERRIDE; | 35 virtual InfoBarAutomationType GetInfoBarAutomationType() const OVERRIDE; |
| 34 virtual Type GetInfoBarType() const OVERRIDE; | 36 virtual Type GetInfoBarType() const OVERRIDE; |
| 35 virtual RegisterProtocolHandlerInfoBarDelegate* | 37 virtual RegisterProtocolHandlerInfoBarDelegate* |
| 36 AsRegisterProtocolHandlerInfoBarDelegate() OVERRIDE; | 38 AsRegisterProtocolHandlerInfoBarDelegate() OVERRIDE; |
| 37 virtual base::string16 GetMessageText() const OVERRIDE; | 39 virtual base::string16 GetMessageText() const OVERRIDE; |
| 38 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE; | 40 virtual base::string16 GetButtonLabel(InfoBarButton button) const OVERRIDE; |
| 39 virtual bool NeedElevation(InfoBarButton button) const OVERRIDE; | 41 virtual bool NeedElevation(InfoBarButton button) const OVERRIDE; |
| 40 virtual bool Accept() OVERRIDE; | 42 virtual bool Accept() OVERRIDE; |
| 41 virtual bool Cancel() OVERRIDE; | 43 virtual bool Cancel() OVERRIDE; |
| 42 virtual base::string16 GetLinkText() const OVERRIDE; | 44 virtual base::string16 GetLinkText() const OVERRIDE; |
| 43 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; | 45 virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; |
| 44 | 46 |
| 45 // Returns a user-friendly name for the protocol of this protocol handler. | 47 // Returns a user-friendly name for the protocol of this protocol handler. |
| 46 base::string16 GetProtocolName(const ProtocolHandler& handler) const; | 48 base::string16 GetProtocolName(const ProtocolHandler& handler) const; |
| 47 | 49 |
| 48 ProtocolHandlerRegistry* registry_; | 50 ProtocolHandlerRegistry* registry_; |
| 49 ProtocolHandler handler_; | 51 ProtocolHandler handler_; |
| 50 | 52 |
| 51 DISALLOW_COPY_AND_ASSIGN(RegisterProtocolHandlerInfoBarDelegate); | 53 DISALLOW_COPY_AND_ASSIGN(RegisterProtocolHandlerInfoBarDelegate); |
| 52 }; | 54 }; |
| 53 | 55 |
| 54 #endif // CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELE
GATE_H_ | 56 #endif // CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELE
GATE_H_ |
| OLD | NEW |