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

Unified Diff: chrome/common/extensions/docs/examples/howto/sandbox/sandbox.html

Issue 10810054: Describing the `sandbox` workflow for extension developers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: TODO + Rebuild. Created 8 years, 5 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/common/extensions/docs/examples/howto/sandbox/sandbox.html
diff --git a/chrome/common/extensions/docs/examples/howto/sandbox/sandbox.html b/chrome/common/extensions/docs/examples/howto/sandbox/sandbox.html
new file mode 100644
index 0000000000000000000000000000000000000000..d66fa2237f554b933fedd1525009cb8c89b3bc5c
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/howto/sandbox/sandbox.html
@@ -0,0 +1,44 @@
+<!--
+ - 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.
+ -->
+<!doctype html>
+<html>
+ <head>
+ <script src="handlebars-1.0.0.beta.6.js"></script>
+ </head>
+ <body>
+ <script id="hello-world-template" type="text/x-handlebars-template">
+ <div class="entry">
+ <h1>Hello, {{thing}}!</h1>
+ </div>
+ </script>
+ <script>
+ var templates = [];
+ var source = document.getElementById('hello-world-template').innerHTML;
+ templates['hello'] = Handlebars.compile(source);
+
+ // Set up message event handler:
+ window.addEventListener('message', function(event) {
+ var command = event.data.command;
+ var name = event.data.name || 'hello';
+ switch(command) {
+ case 'render':
+ event.source.postMessage({
+ name: name,
+ html: templates[name](event.data.context)
+ }, event.origin);
+ break;
+
+ // You could imagine additional functionality. For instance:
+ //
+ // case 'new':
+ // templates[event.data.name] = Handlebars.compile(event.data.source);
+ // event.source.postMessage({name: name, success: true}, event.origin);
+ // break;
+ }
+ });
+ </script>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698