Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 window.addEventListener('load', function init() { | |
| 6 var ev = document.querySelector('extensionview'); | |
| 7 | |
| 8 /** | |
| 9 * @param {string} str | |
| 10 * @return {!Array<string>} | |
| 11 */ | |
| 12 var splitUrlOnHash = function(str) { | |
| 13 str = str || ''; | |
| 14 var pos = str.indexOf('#'); | |
| 15 return (pos !== -1) ? [str.substr(0, pos), str.substr(pos + 1)] : [str, '']; | |
| 16 }; | |
| 17 | |
| 18 new MutationObserver(function() { | |
| 19 var newHash = splitUrlOnHash(ev.getAttribute('src'))[1]; | |
| 20 var oldHash = window.location.hash.substr(1); | |
| 21 if (newHash !== oldHash) { | |
| 22 window.location.hash = newHash; | |
| 23 } | |
| 24 }).observe(ev, { | |
| 25 attributes: true | |
| 26 }); | |
| 27 | |
| 28 window.addEventListener('hashchange', function() { | |
| 29 var newHash = window.location.hash.substr(1); | |
| 30 var evSrcParts = splitUrlOnHash(ev.getAttribute('src')); | |
| 31 if (newHash !== evSrcParts[1]) { | |
| 32 ev.load(evSrcParts[0] + '#' + newHash); | |
| 33 } | |
| 34 }); | |
| 35 | |
| 36 ev.load('chrome-extension://enhhojjnijigcajfphajepfemndkmdlo' + | |
|
apacible
2016/05/16 19:04:07
If this fails to load, do we expect the default "P
apacible
2016/05/16 19:04:07
For different channels, the extension ID will be d
sheretov
2016/05/17 01:59:26
We expect to get the default behavior when extensi
sheretov
2016/05/17 01:59:26
Done, but I'm not sure if this is the right mechan
apacible
2016/05/18 17:30:42
mfoltz: thoughts?
apacible
2016/05/18 17:30:42
If the extensionview fails to load the URL, could
sheretov
2016/05/18 18:11:11
Sounds good. I'll put this in a subsequent CL.
| |
| 37 '/cast_setup/devices.html'); | |
| 38 }); | |
| 39 | |
| OLD | NEW |