summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/docs/overview.html
diff options
context:
space:
mode:
authorkathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-26 00:12:17 +0000
committerkathyw@google.com <kathyw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-26 00:12:17 +0000
commitd3af5134167cbdad1d2a647cd2a0ffe428a7cb8e (patch)
treeca79c67b7b190654067a220e2b08977972530165 /chrome/common/extensions/docs/overview.html
parent58ff6522b72da7b04ffe08771b9dc64ede284f58 (diff)
downloadchromium_src-d3af5134167cbdad1d2a647cd2a0ffe428a7cb8e.zip
chromium_src-d3af5134167cbdad1d2a647cd2a0ffe428a7cb8e.tar.gz
chromium_src-d3af5134167cbdad1d2a647cd2a0ffe428a7cb8e.tar.bz2
Changed comments to use HTML comments instead of class="comment".
TEST=none BUG=none TBR=aa Review URL: http://codereview.chromium.org/440028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33159 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/docs/overview.html')
-rw-r--r--chrome/common/extensions/docs/overview.html32
1 files changed, 6 insertions, 26 deletions
diff --git a/chrome/common/extensions/docs/overview.html b/chrome/common/extensions/docs/overview.html
index 795d682..9b16690 100644
--- a/chrome/common/extensions/docs/overview.html
+++ b/chrome/common/extensions/docs/overview.html
@@ -393,11 +393,7 @@ under the extension's top folder;
it's the same as the relative URL.
</p>
-<p class="comment">
-[PENDING: Should mention/reflect/link to
-<a href="http://dev.chromium.org/developers/design-documents/extensions/i18n">internationalization</a>
-when it's ready.]
-</p>
+<!-- [PENDING: Should mention/reflect/link to <a href="http://dev.chromium.org/developers/design-documents/extensions/i18n">internationalization</a> when it's ready.] -->
<a name="H3-3"></a><h3>The manifest file</h3>
@@ -437,11 +433,6 @@ Most extensions have a
<a href="background_pages.html">background page</a>,
an invisible page
that holds the main logic of the extension.
-<span class="comment">
-[PENDING: unnecessary?]
-No matter how many windows or tabs the user opens,
-there's only one copy of the background page.
-</span>
</p>
<img src="images/arch-1.gif">
@@ -512,17 +503,14 @@ not as part of the extension it was packaged with
(its <em>parent extension</em>).
</p>
-<p class="comment">
-[PENDING: Consider explaining that the reason content scripts
-are separated from the extension is due to chrome's multiprocess design.
-Something like:
+<!-- [PENDING: Consider explaining that the reason content scripts are separated from the extension is due to chrome's multiprocess design. Something like:
Each extension runs in its own process.
To have rich interaction with a web page, however,
the extension must be able to
run some code in the web page's process.
Extensions accomplish this with content scripts.]
-</p>
+-->
<p>
Content scripts can read details of the web pages the browser visits,
@@ -548,9 +536,7 @@ asking a content script to change the appearance of its browser page.
<img src="images/arch-cs.gif">
-<p class="comment">
-[PENDING: Add overview of message passing.]
-</p>
+<!-- [PENDING: Add overview of message passing.] -->
<p>
For more information,
@@ -562,9 +548,7 @@ see <a href="content_scripts.html">Content Scripts</a>.
<p>
The HTML pages within an extension often need to communicate.
-<span class="comment">
-[PENDING: For example, ...]
-</span>
+<!-- [PENDING: For example, ...] -->
Because all of an extension's pages
execute in same process on the same thread,
the pages can make direct function calls to each other.
@@ -581,11 +565,7 @@ the first page can invoke functions on the other pages,
and it can manipulate their DOMs.
</p>
-<p class="comment">
-[PENDING: Here's an example of
-communication between xyz and the background page.
-(code example goes here)]
-</p>
+<!-- [PENDING: Here's an example of communication between xyz and the background page. (code example goes here)] -->
<a name="H2-8"></a><h2> Now what? </h2>