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

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

Issue 11035015: Merge 159156 - Extensions Docs Server: Fix headings with no IDs (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1229/src/
Patch Set: Created 8 years, 3 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/templates/articles/app_network.html
===================================================================
--- chrome/common/extensions/docs/templates/articles/app_network.html (revision 159603)
+++ chrome/common/extensions/docs/templates/articles/app_network.html (working copy)
@@ -40,7 +40,7 @@
Packaged apps can make connections to any service that supports TCP.
</p>
-<h3>Connecting to a socket</h3>
+<h3 id="connecting">Connecting to a socket</h3>
<p>
Here's a sample showing how to connect to a socket:
@@ -61,7 +61,7 @@
chrome.socket.write(socketId, arrayBuffer, onWriteCompleteCallback);
</pre>
-<h3>Reading to and writing from a socket</h3>
+<h3 id="reading">Reading to & writing from a socket</h3>
<p>
Reading and writing from a socket uses ArrayBuffer objects.
@@ -75,7 +75,7 @@
});
</pre>
-<h3>Disconnecting from a socket</h3>
+<h3 id="disconnecting">Disconnecting from a socket</h3>
<p>Here's how to disconnect:</p>
@@ -87,7 +87,7 @@
Packaged apps can make connections to any service that supports UDP.
</p>
-<h3>Sending data</h3>
+<h3 id="sending">Sending data</h3>
<p>
Here's a sample showing how to send data
@@ -112,7 +112,7 @@
);
</pre>
-<h3>Receiving data</h3>
+<h3 id="receiving">Receiving data</h3>
<p>
This example is very similar to the 'Sending data' example
@@ -146,4 +146,4 @@
);
</pre>
-<p class="backtotop"><a href="#top">Back to top</a></p>
+<p class="backtotop"><a href="#top">Back to top</a></p>

Powered by Google App Engine
This is Rietveld 408576698