OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |