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

Unified Diff: chrome/browser/custom_handlers/register_protocol_handler_infobar_delegate.h

Issue 6410115: Adds navigator.registerProtocolHandler. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Sync'd, disallow non-same origin rph, adds hostname to the infobar. Created 9 years, 10 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698