| 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"> | 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 Loading... |
| 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> |
| OLD | NEW |