| 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..eb8c001b3066ad88374fd78f108b54d345e95fe3
|
| --- /dev/null
|
| +++ b/chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h
|
| @@ -0,0 +1,51 @@
|
| +// 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;
|
| + 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;
|
| + virtual bool Accept() OVERRIDE;
|
| + virtual bool Cancel() OVERRIDE;
|
| + virtual string16 GetLinkText() OVERRIDE;
|
| + virtual bool LinkClicked(WindowOpenDisposition disposition) OVERRIDE;
|
| + virtual Type GetInfoBarType() OVERRIDE;
|
| +
|
| + static void AttemptRegisterProtocolHandler(TabContents* tab_contents,
|
| + ProtocolHandlerRegistry* registry,
|
| + ProtocolHandler* handler);
|
| +
|
| + private:
|
| + TabContents* tab_contents_;
|
| + ProtocolHandlerRegistry* registry_;
|
| + ProtocolHandler* handler_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(RegisterProtocolHandlerInfoBarDelegate);
|
| +};
|
| +
|
| +#endif // CHROME_BROWSER_CUSTOM_HANDLERS_REGISTER_PROTOCOL_HANDLER_INFOBAR_DELEGATE_H_
|
|
|