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

Unified Diff: chrome/browser/resources/cast/cast.js

Issue 1820023002: Implementation of chrome://cast page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a TODO(crbug.com/597778) comment. Created 4 years, 7 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/resources/cast/cast.js
diff --git a/chrome/browser/resources/cast/cast.js b/chrome/browser/resources/cast/cast.js
new file mode 100644
index 0000000000000000000000000000000000000000..33e3bdadba427f516f3d61906794725051d44538
--- /dev/null
+++ b/chrome/browser/resources/cast/cast.js
@@ -0,0 +1,43 @@
+// Copyright 2016 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.
+
+window.addEventListener('load', function init() {
+ chrome.send('requestExtensionId');
+});
+
+/** @param {string} extensionId */
+window['setExtensionId'] = function(extensionId) {
+ var ev = document.querySelector('extensionview');
Bernhard Bauer 2016/05/19 14:34:07 Don't use abbreviations in variable names.
sheretov 2016/05/19 16:16:45 Done.
+
+ /**
+ * @param {string} str
+ * @return {!Array<string>}
+ */
+ var splitUrlOnHash = function(str) {
+ str = str || '';
+ var pos = str.indexOf('#');
+ return (pos !== -1) ? [str.substr(0, pos), str.substr(pos + 1)] : [str, ''];
+ };
+
+ new MutationObserver(function() {
+ var newHash = splitUrlOnHash(ev.getAttribute('src'))[1];
+ var oldHash = window.location.hash.substr(1);
+ if (newHash !== oldHash) {
+ window.location.hash = newHash;
+ }
+ }).observe(ev, {
+ attributes: true
+ });
+
+ window.addEventListener('hashchange', function() {
+ var newHash = window.location.hash.substr(1);
+ var evSrcParts = splitUrlOnHash(ev.getAttribute('src'));
+ if (newHash !== evSrcParts[1]) {
+ ev.load(evSrcParts[0] + '#' + newHash);
+ }
+ });
+
+ ev.load('chrome-extension://' + extensionId + '/cast_setup/devices.html');
+};
+

Powered by Google App Engine
This is Rietveld 408576698