Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 module arc.mojom; | 5 // TODO(harkness) Add reference to W3C standard doc. |
| 6 | 6 |
| 7 struct ArcBitmap { | 7 dictionary BudgetChunk { |
| 8 uint32 width; | 8 double budget_amount; |
|
Peter Beverloo
2016/07/01 13:21:59
Let's call this `budget` or `amount`.
There is a
harkness
2016/07/20 09:41:48
Done.
| |
| 9 uint32 height; | 9 double expiration_timestamp; |
|
Peter Beverloo
2016/07/01 13:21:59
`expiration`?
harkness
2016/07/20 09:41:48
Done.
| |
| 10 array<uint8> pixel_data; // Must be ARGB_8888 | |
| 11 }; | 10 }; |
| OLD | NEW |