| OLD | NEW |
| 1 .. _devcycle-application-structure: | 1 .. _devcycle-application-structure: |
| 2 | 2 |
| 3 .. include:: /migration/deprecation.inc |
| 4 |
| 3 ##################### | 5 ##################### |
| 4 Application Structure | 6 Application Structure |
| 5 ##################### | 7 ##################### |
| 6 | 8 |
| 7 .. contents:: | 9 .. contents:: |
| 8 :local: | 10 :local: |
| 9 :backlinks: none | 11 :backlinks: none |
| 10 :depth: 2 | 12 :depth: 2 |
| 11 | 13 |
| 12 This section of the Developer's Guide describes the general structure of a | 14 This section of the Developer's Guide describes the general structure of a |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 leaves the web page, or the NaCl module's ``<embed>`` is otherwise destroyed. | 248 leaves the web page, or the NaCl module's ``<embed>`` is otherwise destroyed. |
| 247 If the NaCl module does call the ``exit()`` function, the instance will | 249 If the NaCl module does call the ``exit()`` function, the instance will |
| 248 issue a ``crash`` event | 250 issue a ``crash`` event |
| 249 :doc:`which can be handled in Javascript<progress-events>`. | 251 :doc:`which can be handled in Javascript<progress-events>`. |
| 250 | 252 |
| 251 While the ``CreateModule()`` factory function, the ``Module`` class, and the | 253 While the ``CreateModule()`` factory function, the ``Module`` class, and the |
| 252 ``Instance`` class are required for a Native Client application, the code | 254 ``Instance`` class are required for a Native Client application, the code |
| 253 samples shown above don't actually do anything. Subsequent sections in the | 255 samples shown above don't actually do anything. Subsequent sections in the |
| 254 Developer's Guide build on these code samples and add more interesting | 256 Developer's Guide build on these code samples and add more interesting |
| 255 functionality. | 257 functionality. |
| OLD | NEW |