| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2014 The Chromium Authors. All rights reserved. | 2 * Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 |
| 6 /** | 7 /** |
| 7 * @unrestricted | 8 * @unrestricted |
| 8 */ | 9 */ |
| 9 WebInspector.TransformController = class extends WebInspector.Object { | 10 WebInspector.TransformController = class extends WebInspector.Object { |
| 10 /** | 11 /** |
| 11 * @param {!Element} element | 12 * @param {!Element} element |
| 12 * @param {boolean=} disableRotate | 13 * @param {boolean=} disableRotate |
| 13 */ | 14 */ |
| 14 constructor(element, disableRotate) { | 15 constructor(element, disableRotate) { |
| 15 super(); | 16 super(); |
| (...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 TransformChanged: Symbol('TransformChanged') | 316 TransformChanged: Symbol('TransformChanged') |
| 316 }; | 317 }; |
| 317 | 318 |
| 318 /** | 319 /** |
| 319 * @enum {string} | 320 * @enum {string} |
| 320 */ | 321 */ |
| 321 WebInspector.TransformController.Modes = { | 322 WebInspector.TransformController.Modes = { |
| 322 Pan: 'Pan', | 323 Pan: 'Pan', |
| 323 Rotate: 'Rotate', | 324 Rotate: 'Rotate', |
| 324 }; | 325 }; |
| OLD | NEW |