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

Side by Side Diff: native_client_sdk/src/doc/devguide/coding/url-loading.rst

Issue 2875303003: Add migration to WebAssembly information to PNaCl / NaCl docs. (Closed)
Patch Set: fix Created 3 years, 6 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 .. _devguide-coding-url-loading: 1 .. _devguide-coding-url-loading:
2 2
3 .. include:: /migration/deprecation.inc
4
3 ########### 5 ###########
4 URL Loading 6 URL Loading
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 Introduction 14 Introduction
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
241 or there is an error (less than -1). ``OnRead`` is called in the event of an 243 or there is an error (less than -1). ``OnRead`` is called in the event of an
242 error or ``PP_OK``. 244 error or ``PP_OK``.
243 245
244 Displaying a result 246 Displaying a result
245 ------------------- 247 -------------------
246 248
247 OnRead calls ``ReportResultAndDie`` when either an error or ``PP_OK`` is 249 OnRead calls ``ReportResultAndDie`` when either an error or ``PP_OK`` is
248 returned to indicate streaming of file is complete. ``ReportResultAndDie`` then 250 returned to indicate streaming of file is complete. ``ReportResultAndDie`` then
249 calls ``ReportResult,`` which calls ``PostMessage`` to send the result back to 251 calls ``ReportResult,`` which calls ``PostMessage`` to send the result back to
250 the HTML page. 252 the HTML page.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698