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

Side by Side Diff: chrome/common/extensions/docs/templates/articles/gcm_server.html

Issue 1018643003: Removing chrome.pushMessaging API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updates to documentation per kalman's comments Created 5 years, 9 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 unified diff | Download patch
OLDNEW
1 <meta name="doc-family" content="apps"> 1 <meta name="doc-family" content="apps">
2 <h1>API Reference for GCM service</h1> 2 <h1>API Reference for GCM service</h1>
3 3
4 <p class="note"> 4 <p class="note">
5 This document explains sending messages to chrome.pushMessaging API, which is 5 The <code>chrome.pushMessaging</code> API was deleted in Chrome 43. This
6 deprecated since Chrome 38. The API will be removed in Chrome 41. 6 document exists for posterity only.
7 Use the new <a href="cloudMessaging">Google Cloud Messaging</a>. 7 Use the new <a href="cloudMessaging">Google Cloud Messaging</a>.
8 </p> 8 </p>
9 9
10 <p> 10 <p>
11 The <a href="cloudMessagingV1">Google Cloud Messaging for Chrome</a> service 11 The <a href="cloudMessagingV1">Google Cloud Messaging for Chrome</a> service
12 sends messages to users of a Chrome App. 12 sends messages to users of a Chrome App.
13 The service handles all aspects of queueing and delivering messages. 13 The service handles all aspects of queueing and delivering messages.
14 To use the service, 14 To use the service,
15 you must agree to the 15 you must agree to the
16 <a href="gcm_tos">Google Cloud Messaging for Chrome API Terms of Service</a>. 16 <a href="gcm_tos">Google Cloud Messaging for Chrome API Terms of Service</a>.
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 <td>The subchannel to send the message on; only values 0-3 are valid.</td> 150 <td>The subchannel to send the message on; only values 0-3 are valid.</td>
151 </tr> 151 </tr>
152 <tr> 152 <tr>
153 <td><code>payload</code></td> 153 <td><code>payload</code></td>
154 <td>The message body (up to 256 bytes). This should not include any 154 <td>The message body (up to 256 bytes). This should not include any
155 personally identifiable information.</td> 155 personally identifiable information.</td>
156 </tr> 156 </tr>
157 </table> 157 </table>
158 158
159 <p class="backtotop"><a href="#top">Back to top</a></p> 159 <p class="backtotop"><a href="#top">Back to top</a></p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698