Chromium Code Reviews| Index: chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h |
| diff --git a/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h b/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ed80251177c37f1f7f8ef02972b3b966fc07e97b |
| --- /dev/null |
| +++ b/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h |
| @@ -0,0 +1,46 @@ |
| +// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGATE_H_ |
| +#define CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGATE_H_ |
| +#pragma once |
| + |
| +#include "base/string16.h" |
| +#include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| +#include "chrome/browser/tab_contents/infobar_delegate.h" |
| + |
| +class SkBitmap; |
| +class TabContents; |
| + |
| +// An InfoBar delegate that enables the user to allow or deny storing credit |
| +// card information gathered from a form submission. |
| +class RegisterProtocolHandlerInfoBarDelegate : public ConfirmInfoBarDelegate { |
| + public: |
| + RegisterProtocolHandlerInfoBarDelegate(TabContents* tab_contents, |
| + ProtocolHandlerRegistry* registry, |
| + ProtocolHandler* handler); |
| + |
| + // ConfirmInfoBarDelegate implementation. |
| + virtual bool ShouldExpire( |
| + const NavigationController::LoadCommittedDetails& details) const OVERRIDE; |
|
jam
2011/02/15 18:48:39
nit: 4 spaces needed
koz (OOO until 15th September)
2011/02/16 03:37:48
Done.
|
| + virtual void InfoBarClosed() OVERRIDE; |
| + virtual string16 GetMessageText() const OVERRIDE; |
| + virtual SkBitmap* GetIcon() const OVERRIDE; |
| + virtual int GetButtons() const OVERRIDE; |
| + virtual string16 GetButtonLabel( |
| + ConfirmInfoBarDelegate::InfoBarButton button) const OVERRIDE; |
|
jam
2011/02/15 18:48:39
ditto
koz (OOO until 15th September)
2011/02/16 03:37:48
Done.
|
| + virtual bool Accept() OVERRIDE; |
| + virtual bool Cancel() OVERRIDE; |
| + virtual string16 GetLinkText() OVERRIDE; |
| + virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE; |
| + virtual Type GetInfoBarType() OVERRIDE; |
| + |
| + private: |
| + ProtocolHandlerRegistry* registry_; |
| + ProtocolHandler* handler_; |
| + |
| + DISALLOW_COPY_AND_ASSIGN(RegisterProtocolHandlerInfoBarDelegate); |
| +}; |
| + |
| +#endif // CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGATE_H_ |