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

Unified Diff: chrome/renderer/resources/extensions/browser_tag.js

Issue 10598006: Browser tag shim (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix tests Created 8 years, 6 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/renderer/resources/extensions/browser_tag.js
diff --git a/chrome/renderer/resources/extensions/browser_tag.js b/chrome/renderer/resources/extensions/browser_tag.js
new file mode 100644
index 0000000000000000000000000000000000000000..244b054ce80d47e0c3abb3919b033201f13e41a8
--- /dev/null
+++ b/chrome/renderer/resources/extensions/browser_tag.js
@@ -0,0 +1,90 @@
+// Copyright (c) 2012 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.
+
+// Shim that simulates a <browser> tag via Mutation Observers.
Aaron Boodman 2012/07/02 20:52:35 Is the plan to actually implement a <browser> tag
Mihai Parparita -not on Chrome 2012/07/02 22:05:14 Perhaps, but I don't think Apple would be too rece
Aaron Boodman 2012/07/02 23:04:37 I don't think so. I wondered if you were consideri
+//
+// The actual tag is implemented via the browser plugin. The internals of this
+// are hidden via Shadow DOM.
+
+var BROWSER_TAG_ATTRIBUTES = ['src', 'width', 'height'];
Aaron Boodman 2012/07/02 20:52:35 I can't remember, but I think that these names mig
Mihai Parparita -not on Chrome 2012/07/02 22:05:14 The module system wrap everything in an anonymous
Aaron Boodman 2012/07/02 23:04:37 Cool.
+
+// Handle <browser> tags already in the document.
+window.addEventListener('DOMContentLoaded', function() {
+ var browserNodes = document.body.querySelectorAll('browser');
+ for (var i = 0, browserNode; browserNode = browserNodes[i]; i++) {
+ new BrowserTag(browserNode);
+ }
+});
+
+// Handle <browser> tags added later.
+var observer = new WebKitMutationObserver(function(mutations) {
+ mutations.forEach(function(mutation) {
+ for (var i = 0, addedNode; addedNode = mutation.addedNodes[i]; i++) {
+ if (addedNode.tagName == 'BROWSER') {
+ new BrowserTag(addedNode);
+ }
+ }
+ });
+});
+observer.observe(document, {subtree: true, childList: true});
+
+/**
+ * @constructor
+ */
+function BrowserTag(node) {
+ this.node_ = node;
+ this.shadowRoot_ = new WebKitShadowRoot(node);
arv (Not doing code reviews) 2012/07/02 21:04:28 No need to make this a property
Mihai Parparita -not on Chrome 2012/07/02 22:05:14 Done. The observer didn't need to be a property ei
+
+ this.objectNode_ = document.createElement('object');
+ this.objectNode_.type = 'application/browser-plugin';
+ BROWSER_TAG_ATTRIBUTES.forEach(this.copyAttribute_, this);
+ this.shadowRoot_.appendChild(this.objectNode_);
+
+ // Map attribute modifications on the <browser> tag to changes on the
+ // underlying <object> node.
+ var handleMutation = this.handleMutation_.bind(this);
+ this.observer_ = new WebKitMutationObserver(function(mutations) {
+ mutations.forEach(handleMutation);
+ });
+ this.observer_.observe(
+ this.node_,
+ {attributes: true, attributeFilter: BROWSER_TAG_ATTRIBUTES});
+
+ // Expose getters and setters for the attributes.
+ BROWSER_TAG_ATTRIBUTES.forEach(function(attributeName) {
+ Object.defineProperty(this.node_, attributeName, {
+ get: function() {
+ var value = node.getAttribute(attributeName);
+ var numericValue = parseInt(value, 10);
+ return isNaN(numericValue) ? value : numericValue;
+ },
+ set: function(value) {
+ node.setAttribute(attributeName, value);
+ },
+ enumerable: true
+ });
+ }, this);
+};
+
+/**
+ * @private
+ */
+BrowserTag.prototype.handleMutation_ = function(mutation) {
+ switch (mutation.attributeName) {
+ case 'src':
+ this.objectNode_.postMessage(this.node_.getAttribute('src'));
+ break;
+ default:
+ this.copyAttribute_(mutation.attributeName);
+ break;
+ }
+};
+
+/**
+ * @private
+ */
+BrowserTag.prototype.copyAttribute_ = function(attributeName) {
+ this.objectNode_.setAttribute(
+ attributeName, this.node_.getAttribute(attributeName));
+}
arv (Not doing code reviews) 2012/07/02 21:04:28 missing semicolon
Mihai Parparita -not on Chrome 2012/07/02 22:05:14 Done.

Powered by Google App Engine
This is Rietveld 408576698