| OLD | NEW |
| 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"> |
| 5 This document explains sending messages to chrome.pushMessaging API, which is |
| 6 deprecated since Chrome 38. The API will be removed in Chrome 41. |
| 7 Use the new <a href="cloudMessaging">Google Cloud Messaging</a>. |
| 8 </p> |
| 9 |
| 4 <p> | 10 <p> |
| 5 The <a href="cloudMessaging">Google Cloud Messaging for Chrome</a> service | 11 The <a href="cloudMessagingV1">Google Cloud Messaging for Chrome</a> service |
| 6 sends messages to users of a Chrome App. | 12 sends messages to users of a Chrome App. |
| 7 The service handles all aspects of queueing and delivering messages. | 13 The service handles all aspects of queueing and delivering messages. |
| 8 To use the service, | 14 To use the service, |
| 9 you must agree to the | 15 you must agree to the |
| 10 <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>. |
| 11 </p> | 17 </p> |
| 12 | 18 |
| 13 <p>Messages must conform to these constraints:</p> | 19 <p>Messages must conform to these constraints:</p> |
| 14 | 20 |
| 15 <ul> | 21 <ul> |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 <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> |
| 145 </tr> | 151 </tr> |
| 146 <tr> | 152 <tr> |
| 147 <td><code>payload</code></td> | 153 <td><code>payload</code></td> |
| 148 <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 |
| 149 personally identifiable information.</td> | 155 personally identifiable information.</td> |
| 150 </tr> | 156 </tr> |
| 151 </table> | 157 </table> |
| 152 | 158 |
| 153 <p class="backtotop"><a href="#top">Back to top</a></p> | 159 <p class="backtotop"><a href="#top">Back to top</a></p> |
| OLD | NEW |