Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(449)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: mojo/public/libs/message/README
Issue
23629032
:
mojo: MessageBuilder (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compilation error.
Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
build/all.gyp
mojo/mojo.gyp
mojo/public/libs/message/README
mojo/public/libs/message/message.h
mojo/public/libs/message/message.cc
mojo/public/libs/message/message_builder.h
mojo/public/libs/message/message_builder.cc
mojo/public/libs/message/message_unittest.cc
mojo/public/system/core.h
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« mojo/mojo.gyp
('k') |
mojo/public/libs/message/message.h »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
MESSAGE FORMAT
2
==============
3
4
A Mojo IPC message resembles a property bag, with ordinals as property names.
5
6
Message:
7
[ MessageSize | MessageName | Field_1 | Field_2 | ... | Field_N ]
8
9
MessageSize:
10
[ U32 ]
11
12
MessageName:
13
[ U32 ]
14
15
Field:
16
[ FieldHeader | FieldValue ]
17
18
FieldHeader:
19
[ FieldName | FieldType ]
20
21
FieldName:
22
[ U16 ]
23
24
FieldType:
25
[ U14 | FieldClass ]
26
27
FieldClass:
28
[ U2 ]
29
30
01 - FieldValue is a 32-bit value (U32)
31
10 - FieldValue is a 64-bit value (U64)
32
11 - FieldValue is a variable-length array
33
34
FieldValue:
35
[ U32 ]
36
[ U64 ]
37
[ FieldSize | FieldBytes ]
38
39
FieldSize:
40
[ U32 ]
OLD
NEW
« no previous file with comments
|
« mojo/mojo.gyp
('k') |
mojo/public/libs/message/message.h »
('j') |
no next file with comments »
Issue 23629032: mojo: MessageBuilder (Closed)
Created 7 years, 3 months ago by darin (slow to review)
Modified 7 years, 3 months ago
Reviewers: vtl, viettrungluu
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 14
This is Rietveld
408576698