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

Side by Side Diff: native_client_sdk/src/doc/devguide/devcycle/running.rst

Issue 637873003: [DOCS] Edit references to Chrome 31 and earlier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 .. _devcycle-running: 1 .. _devcycle-running:
2 2
3 ####### 3 #######
4 Running 4 Running
5 ####### 5 #######
6 6
7 7
8 .. contents:: 8 .. contents::
9 :local: 9 :local:
10 :backlinks: none 10 :backlinks: none
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 ============= 139 =============
140 140
141 Browser and Pepper versions 141 Browser and Pepper versions
142 --------------------------- 142 ---------------------------
143 143
144 Before you run a new build of your application, make sure that you're using the 144 Before you run a new build of your application, make sure that you're using the
145 correct version of Chrome. Each version of Chrome supports a corresponding 145 correct version of Chrome. Each version of Chrome supports a corresponding
146 version of the Pepper API. You (and your users) must use a version of Chrome 146 version of the Pepper API. You (and your users) must use a version of Chrome
147 that is equal to or higher than the version of the Pepper API that your 147 that is equal to or higher than the version of the Pepper API that your
148 application uses. For example, if you compiled your application using the 148 application uses. For example, if you compiled your application using the
149 ``pepper_31`` bundle, your application uses the Pepper 31 API, and you must run 149 ``pepper_37`` bundle, your application uses the Pepper 37 API, and you must run
150 the application in Chrome 31 or higher. To check which version of Chrome you're 150 the application in Chrome 37 or higher. To check which version of Chrome you're
JF 2014/10/08 22:00:37 Should we make this some form of a macro that tran
151 using, type ``about:version`` in the Chrome address bar. 151 using, type ``about:version`` in the Chrome address bar.
152 152
153 .. _cache: 153 .. _cache:
154 154
155 Chrome Cache 155 Chrome Cache
156 ------------ 156 ------------
157 157
158 Chrome caches resources aggressively. You should disable Chrome's cache whenever 158 Chrome caches resources aggressively. You should disable Chrome's cache whenever
159 you are developing a Native Client application in order to make sure Chrome 159 you are developing a Native Client application in order to make sure Chrome
160 loads new versions of your application. Follow the instructions :ref:`in the 160 loads new versions of your application. Follow the instructions :ref:`in the
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 #. Start a web server to serve your application. 357 #. Start a web server to serve your application.
358 358
359 * You can use the :ref:`local web server <web_server>` included with the 359 * You can use the :ref:`local web server <web_server>` included with the
360 Native Client SDK if you want. 360 Native Client SDK if you want.
361 #. Upload your application (.html, .nmf, .nexe, .css, .js, image files, etc.) 361 #. Upload your application (.html, .nmf, .nexe, .css, .js, image files, etc.)
362 to the server. 362 to the server.
363 363
364 * If you're using the local server included with the Native Client SDK, 364 * If you're using the local server included with the Native Client SDK,
365 simply put your application under the ``examples`` directory in the SDK 365 simply put your application under the ``examples`` directory in the SDK
366 bundle you are using (e.g., in the directory 366 bundle you are using (e.g., in the directory
367 ``pepper_31/examples/my_app``). 367 ``pepper_37/examples/my_app``).
368 #. Create a Chrome Web Store manifest file and one or more icons for your 368 #. Create a Chrome Web Store manifest file and one or more icons for your
369 application. 369 application.
370 370
371 * Follow the instructions above under :ref:`Chrome Web Store metadata 371 * Follow the instructions above under :ref:`Chrome Web Store metadata
372 <metadata>` to create these files. 372 <metadata>` to create these files.
373 * In the CWS manifest file, the ``web_url`` field should specify the 373 * In the CWS manifest file, the ``web_url`` field should specify the
374 location of your application on your server. If you're using the local 374 location of your application on your server. If you're using the local
375 server included with the SDK, the ``web_url`` field should look something 375 server included with the SDK, the ``web_url`` field should look something
376 like ``http://localhost:5103/my_app/my_app_main_page.html``. 376 like ``http://localhost:5103/my_app/my_app_main_page.html``.
377 #. Put the CWS manifest file and the application icon(s) in the same directory 377 #. Put the CWS manifest file and the application icon(s) in the same directory
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 be able to find the application by searching in the CWS. 471 be able to find the application by searching in the CWS.
472 472
473 To publish an application to the world after publishing it to test accounts, 473 To publish an application to the world after publishing it to test accounts,
474 you must first unpublish the application. For additional information see 474 you must first unpublish the application. For additional information see
475 `Publishing Your App </webstore/docs/publish>`_, and in particular `Publishing 475 `Publishing Your App </webstore/docs/publish>`_, and in particular `Publishing
476 to test accounts </webstore/publish#testaccounts>`_. 476 to test accounts </webstore/publish#testaccounts>`_.
477 477
478 .. |menu-icon| image:: /images/menu-icon.png 478 .. |menu-icon| image:: /images/menu-icon.png
479 .. |extensions| image:: /images/extensions-management.png 479 .. |extensions| image:: /images/extensions-management.png
480 .. |new-tab-apps| image:: /images/new-tab-apps.png 480 .. |new-tab-apps| image:: /images/new-tab-apps.png
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698