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

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

Issue 12223068: Fix some typos, broken links and other issues in extension docs (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 <meta name="doc-family" content="apps"> 1 <meta name="doc-family" content="apps">
2 <h1>Understand the Architecture</h1> 2 <h1>Understand the Architecture</h1>
3 3
4 4
5 <p> 5 <p>
6 Packaged apps integrate closely with a user’s operating system. 6 Packaged apps integrate closely with a user’s operating system.
7 They are designed to be run outside of a browser tab, 7 They are designed to be run outside of a browser tab,
8 to run robustly in offline and poor connectivity scenarios and 8 to run robustly in offline and poor connectivity scenarios and
9 to have far more powerful capabilities than are available 9 to have far more powerful capabilities than are available
10 in a typical web browsing environment. 10 in a typical web browsing environment.
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 <br> 82 <br>
83 83
84 <table class="simple"> 84 <table class="simple">
85 <tr> 85 <tr>
86 <th scope="col"> Stage </th> 86 <th scope="col"> Stage </th>
87 <th scope="col"> Summary </th> 87 <th scope="col"> Summary </th>
88 </tr> 88 </tr>
89 <tr> 89 <tr>
90 <td>Installation</td> 90 <td>Installation</td>
91 <td>User chooses to install the app and explicitly accepts the 91 <td>User chooses to install the app and explicitly accepts the
92 » <a href="manifest.html#permissions">permissions</a>. 92 » <a href="declare_permissions.html">permissions</a>.
93 </td> 93 </td>
94 </tr> 94 </tr>
95 <tr> 95 <tr>
96 <td>Startup</td> 96 <td>Startup</td>
97 <td>The event page is loaded, 97 <td>The event page is loaded,
98 the 'launch' event fires, 98 the 'launch' event fires,
99 and app pages open in windows. 99 and app pages open in windows.
100 You 100 You
101 <a href="app_lifecycle.html#eventpage">create the windows</a> 101 <a href="app_lifecycle.html#eventpage">create the windows</a>
102 that your app requires, 102 that your app requires,
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 You can use the <code>object</code> tag to 164 You can use the <code>object</code> tag to
165 <a href="app_external.html">embed external content</a>; 165 <a href="app_external.html">embed external content</a>;
166 this content runs in a separate process from the app. 166 this content runs in a separate process from the app.
167 </p> 167 </p>
168 168
169 <p> 169 <p>
170 <iframe title="YouTube video player" width="610" height="380" src="http://www.yo utube.com/embed/EDtiWN42lHs" frameborder="0" allowfullscreen></iframe> 170 <iframe title="YouTube video player" width="610" height="380" src="http://www.yo utube.com/embed/EDtiWN42lHs" frameborder="0" allowfullscreen></iframe>
171 </p> 171 </p>
172 172
173 <p class="backtotop"><a href="#top">Back to top</a></p> 173 <p class="backtotop"><a href="#top">Back to top</a></p>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698