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

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

Issue 10810054: Describing the `sandbox` workflow for extension developers. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: 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/eventpage.js
diff --git a/chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js b/chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js
new file mode 100644
index 0000000000000000000000000000000000000000..03800c63123123b6f5e96d49838d4ae6d1435853
--- /dev/null
+++ b/chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js
@@ -0,0 +1,24 @@
+// 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.
+
+chrome.browserAction.onClicked.addListener(function() {
+ var iframe = document.getElementById('theFrame');
+ var message = {
+ command: 'render',
+ context: {thing: 'world'}
+ };
+ iframe.contentWindow.postMessage(message, '*');
+});
+
+
+window.addEventListener('message', function(event) {
+ if (event.data.html) {
+ var notification = webkitNotifications.createNotification(
+ 'icon.png',
+ 'Templated!',
+ 'HTML Received for "' + event.data.name + '": `' + event.data.html + '`'
+ );
+ notification.show();
+ }
+});

Powered by Google App Engine
This is Rietveld 408576698