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

Side by Side Diff: native_client_sdk/src/doc/devguide/coding/message-system.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 .. _message-system: 1 .. _message-system:
2 2
3 .. include:: /migration/deprecation.inc
4
3 ################ 5 ################
4 Messaging System 6 Messaging System
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 describes the messaging system used to communicate between the 14 This section describes the messaging system used to communicate between the
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 virtual void HandleMessage(const pp::Var& var) { 406 virtual void HandleMessage(const pp::Var& var) {
405 if (var.is_dictionary()) { 407 if (var.is_dictionary()) {
406 pp::VarDictionary dictionary(var); 408 pp::VarDictionary dictionary(var);
407 // Use the dictionary 409 // Use the dictionary
408 pp::VarArray keys = dictionary.GetKeys(); 410 pp::VarArray keys = dictionary.GetKeys();
409 // ... 411 // ...
410 } else { 412 } else {
411 // ... 413 // ...
412 } 414 }
413 } 415 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/doc/devguide/coding/index.rst ('k') | native_client_sdk/src/doc/devguide/coding/nacl_io.rst » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698