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

Unified Diff: chrome/browser/custom_handlers/protocol_handler.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/protocol_handler.h
diff --git a/chrome/browser/custom_handlers/protocol_handler.h b/chrome/browser/custom_handlers/protocol_handler.h
new file mode 100644
index 0000000000000000000000000000000000000000..026ffe79dd292f19c482a6afa398378ec5688cbb
--- /dev/null
+++ b/chrome/browser/custom_handlers/protocol_handler.h
@@ -0,0 +1,47 @@
+// Copyright (c) 2011 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_PROTOCOL_HANDLER_H_
+#define CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_H_
+#pragma once
+
+#include <string>
+
+#include "base/values.h"
+#include "googleurl/src/gurl.h"
+
+// A single tuple of (protocol, url, title) that indicates how URLs of the
+// given protocol should be rewritten to be handled.
+
+class ProtocolHandler {
+ public:
+ static ProtocolHandler* CreateProtocolHandler(const std::string& protocol,
+ const GURL& url,
+ const string16& title);
+ static ProtocolHandler* CreateProtocolHandler(const DictionaryValue* value);
+
+ // Interpolates the given URL into the URL template of this handler.
+ GURL TranslateUrl(const GURL& url);
+
+ // Encodes this protocol handler as a Value. The caller is responsible for
+ // deleting the returned value.
+ Value* Encode();
+
+ std::string protocol() const { return protocol_; }
+ GURL url() const { return url_;}
+ string16 title() const { return title_; }
+
+ bool operator==(const ProtocolHandler &other) const;
+
+ private:
+ ProtocolHandler(const std::string& protocol,
+ const GURL& url,
+ const string16& title);
+ const std::string protocol_;
+ const GURL url_;
+ const string16 title_;
+};
+
+#endif // CHROME_BROWSER_CUSTOM_HANDLERS_PROTOCOL_HANDLER_H_
+

Powered by Google App Engine
This is Rietveld 408576698