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. |
Luis Héctor Chávez
2016/07/01 16:02:07
// Next MinVersion: 1
Sergey Poromov
2016/07/11 14:42:07
Done.
| |
4 | 4 |
5 module arc.mojom; | 5 module arc.mojom; |
6 | 6 |
7 // Represents a rectangle to specify screen coordinates. | 7 interface PrintHost { |
Luis Héctor Chávez
2016/07/01 16:02:07
// Next method ID: 1
Sergey Poromov
2016/07/11 14:42:07
Done.
| |
8 struct ScreenRect { | 8 Print(handle file); |
Luis Héctor Chávez
2016/07/01 16:02:07
This and Init need explicit ordinals.
Print@0 and
Sergey Poromov
2016/07/11 14:42:07
Done.
| |
9 int32 left; | |
10 int32 top; | |
11 int32 right; | |
12 int32 bottom; | |
13 }; | 9 }; |
10 | |
11 interface PrintInstance { | |
Luis Héctor Chávez
2016/07/01 16:02:07
// Next method ID: 1
Sergey Poromov
2016/07/11 14:42:07
Done.
| |
12 // Establishes full-duplex communication with the host. | |
13 Init(PrintHost host_ptr); | |
14 }; | |
OLD | NEW |