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

Unified Diff: chrome/common/extensions/docs/server2/templates/articles/apps_api_index.html

Issue 10832042: Extensions Docs Server: Doc conversion script (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: everything but svn stuff 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/server2/templates/articles/apps_api_index.html
diff --git a/chrome/common/extensions/docs/server2/templates/articles/apps_api_index.html b/chrome/common/extensions/docs/server2/templates/articles/apps_api_index.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69e39a8bf9c88d3d2f28326ddf18337fea0871c
--- /dev/null
+++ b/chrome/common/extensions/docs/server2/templates/articles/apps_api_index.html
@@ -0,0 +1,34 @@
+<h1>chrome.* APIs</h1>
+
+
+<h2 id="supported">Supported APIs</h2>
+
+<p>Here are the currently supported APIs for packaged apps:
+
+<ul>
+ <li jsselect="listPlatformAppAPIs(false);"><a jsvalues=".href: $this + '.html'" jscontent="$this" href="bookmarks.html" js>bookmarks</a>
+ </li>
+</ul>
+
+<h2 id="experimental">Experimental APIs</h2>
+
+<p>
+The following APIs are still under active development.
+</p>
+
+<ul>
+ <li jsselect="listPlatformAppAPIs(true);"><a jsvalues=".href: $this + '.html'" jscontent="$this" href="bookmarks.html" js>bookmarks</a>
+ </li>
+</ul>
+
+<h2 id="conventions">API conventions</h2>
+
+<p>
+Unless the doc says otherwise,
+methods in the chrome.* APIs are <b>asynchronous</b>:
+they return immediately,
+without waiting for the operation to finish.
+If you need to know the outcome of an operation,
+then you pass a callback function into the method.
+For more information, watch this video:
+</p>

Powered by Google App Engine
This is Rietveld 408576698