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

Side by Side Diff: native_client_sdk/src/doc/devguide/coding/file-io.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-fileio: 1 .. _devguide-coding-fileio:
2 2
3 .. include:: /migration/deprecation.inc
4
3 ######## 5 ########
4 File I/O 6 File I/O
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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 546
545 .. naclcode:: 547 .. naclcode::
546 548
547 int32_t result = ref.MakeDirectory( 549 int32_t result = ref.MakeDirectory(
548 PP_MAKEDIRECTORYFLAG_NONE, pp::BlockUntilComplete()); 550 PP_MAKEDIRECTORYFLAG_NONE, pp::BlockUntilComplete());
549 if (result != PP_OK) { 551 if (result != PP_OK) {
550 ShowErrorMessage("Make directory failed", result); 552 ShowErrorMessage("Make directory failed", result);
551 return; 553 return;
552 } 554 }
553 ShowStatusMessage("Make directory success"); 555 ShowStatusMessage("Make directory success");
OLDNEW
« no previous file with comments | « native_client_sdk/src/doc/devguide/coding/audio.rst ('k') | native_client_sdk/src/doc/devguide/coding/index.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698