OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 interface View { | 5 interface View { |
6 readonly attribute double devicePixelRatio; | 6 readonly attribute double devicePixelRatio; |
| 7 |
| 8 // TODO(ianh): convert this to returning a Size |
7 readonly attribute double width; | 9 readonly attribute double width; |
8 readonly attribute double height; | 10 readonly attribute double height; |
9 | 11 |
10 attribute Picture picture; | 12 attribute Picture picture; |
11 | 13 |
12 void setEventCallback(EventCallback callback); | 14 void setEventCallback(EventCallback callback); |
13 void setMetricsChangedCallback(VoidCallback callback); | 15 void setMetricsChangedCallback(VoidCallback callback); |
14 | 16 |
15 void setBeginFrameCallback(BeginFrameCallback callback); | 17 void setBeginFrameCallback(BeginFrameCallback callback); |
16 void scheduleFrame(); | 18 void scheduleFrame(); |
17 }; | 19 }; |
OLD | NEW |