Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 dictionary MojoReadDataFlags { | |
|
jbroman
2017/03/07 16:01:44
super-nit: we'd usually call these "Options" dicti
alokp
2017/03/07 19:34:20
Done.
| |
| 6 boolean allOrNone = false; | |
| 7 boolean discard = false; | |
| 8 boolean query = false; | |
| 9 boolean peek = false; | |
| 10 }; | |
| OLD | NEW |