Index: chrome/common/extensions/docs/templates/articles/sandboxingEval.html |
diff --git a/chrome/common/extensions/docs/templates/articles/sandboxingEval.html b/chrome/common/extensions/docs/templates/articles/sandboxingEval.html |
index ef322d238219c5cd33224c7fbab36632d54b9c68..00db83aa0304818912c560b2f2d25b14558283af 100644 |
--- a/chrome/common/extensions/docs/templates/articles/sandboxingEval.html |
+++ b/chrome/common/extensions/docs/templates/articles/sandboxingEval.html |
@@ -60,7 +60,7 @@ |
<p> |
If you'd like to dive straight into code, please grab the |
- <a href='http://code.google.com/chrome/extensions/samples.html#3c6dfba67f6a7480d931b5a4a646c151ad1a049b'>sandboxing |
+ <a href='/extensions/samples.html#3c6dfba67f6a7480d931b5a4a646c151ad1a049b'>sandboxing |
sample extension and take off</a>. It's a working example of a tiny messaging |
API built on top of the <a href='http://handlebarsjs.com'>Handlebars</a> |
templating library, and it should give you everything you need to get going. |
@@ -91,10 +91,10 @@ |
<p> |
In order to do something interesting with the sandboxed file, we need to load |
it in a context where it can be addressed by the extension's code. Here, |
- <a href='http://code.google.com/chrome/extensions/examples/howto/sandbox/sandbox.html'>sandbox.html</a> |
- has been loaded into the extension's <a href='http://code.google.com/chrome/extensions/dev/event_pages.html'>Event |
- Page</a> (<a href='http://code.google.com/chrome/extensions/examples/howto/sandbox/eventpage.html'>eventpage.html</a>) |
- via an <code>iframe</code>. <a href='http://code.google.com/chrome/extensions/examples/howto/sandbox/eventpage.js'>eventpage.js</a> |
+ <a href='/extensions/examples/howto/sandbox/sandbox.html'>sandbox.html</a> |
+ has been loaded into the extension's <a href='event_pages.html'>Event |
+ Page</a> (<a href='/extensions/examples/howto/sandbox/eventpage.html'>eventpage.html</a>) |
+ via an <code>iframe</code>. <a href='/extensions/examples/howto/sandbox/eventpage.js'>eventpage.js</a> |
contains code that sends a message into the sandbox whenever the browser |
action is clicked by finding the <code>iframe</code> on the page, and |
executing the <code>postMessage</code> method on its |