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

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: Responded to comments, prevents rph on privileged protocols. 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..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_

Powered by Google App Engine
This is Rietveld 408576698