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

Side by Side Diff: sky/framework/inspector/page-agent.sky

Issue 881093003: Normalize import paths for Sky modules (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 unified diff | Download patch
OLDNEW
1 <import src="/sky/framework/xmlhttprequest.sky" as="XMLHttpRequest" /> 1 <import src="../xmlhttprequest.sky" as="XMLHttpRequest" />
2 <script> 2 <script>
3 class Page { 3 class Page {
4 constructor(delegate) { 4 constructor(delegate) {
5 this.delegate_ = delegate; 5 this.delegate_ = delegate;
6 Object.preventExtensions(this); 6 Object.preventExtensions(this);
7 } 7 }
8 8
9 enable() { 9 enable() {
10 } 10 }
11 11
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 if (element.shadowRoot) { 99 if (element.shadowRoot) {
100 roots.push(element.shadowRoot); 100 roots.push(element.shadowRoot);
101 } 101 }
102 }); 102 });
103 } 103 }
104 return map; 104 return map;
105 } 105 }
106 106
107 module.exports = Page; 107 module.exports = Page;
108 </script> 108 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698