OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 | 7 |
8 <link rel="import" href="/tracing/model/location.html"> | 8 <link rel="import" href="/tracing/model/location.html"> |
9 | 9 |
10 <script> | 10 <script> |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 72 |
73 toDict: function() { | 73 toDict: function() { |
74 return { | 74 return { |
75 location: this.location_.toDict(), | 75 location: this.location_.toDict(), |
76 scaleX: this.scaleX_ | 76 scaleX: this.scaleX_ |
77 }; | 77 }; |
78 } | 78 } |
79 }; | 79 }; |
80 | 80 |
81 return { | 81 return { |
82 UIState: UIState | 82 UIState, |
83 }; | 83 }; |
84 }); | 84 }); |
85 </script> | 85 </script> |
OLD | NEW |