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

Side by Side Diff: extension/background.html

Issue 11305009: Fix dwc extension with latest js-interop, small fix to dwc, and updates to (Closed) Base URL: git@github.com:dart-lang/dart-web-components.git@master
Patch Set: Created 8 years, 1 month 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
« no previous file with comments | « example/explainer/build_examples.dart ('k') | extension/dart_proxy.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script type="application/dart" src="bin/dwc_browser.dart"></script> 3 <script type="application/dart" src="bin/dwc_browser.dart"></script>
4 <script type="text/javascript" src="dart.js"></script> 4 <script type="text/javascript" src="dart.js"></script>
5 <!-- 5 <!--
6 TODO(jacobr): this is a hack to make Dart-JS interop work given chrome 6 We must load 'dart_interop.js' explicitly. It cannot be injected dynamically
Jennifer Messerly 2012/10/26 18:56:26 do we still need this comment? I thought dart_inte
Siggi Cherem (dart-lang) 2012/10/26 19:01:36 you are correct, I just wanted to keep some messag
7 extension security restrictions for inline JS 7 because of security restrictions for inline JS on chrome extensions.
8 --> 8 -->
9 <script src="dart_proxy.js"></script> 9 <script src="bin/packages/js/dart_interop.js"></script>
10 <script src="background.js"></script> 10 <script src="background.js"></script>
11 </head> 11 </head>
12 <body> 12 <body>
13 </body> 13 </body>
14 </html> 14 </html>
OLDNEW
« no previous file with comments | « example/explainer/build_examples.dart ('k') | extension/dart_proxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698