| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 cr.define('print_preview', function() { | 5 cr.define('print_preview', function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * @constructor | 9 * @constructor |
| 10 * This class represents a margin line and a textbox corresponding to that | 10 * This class represents a margin line and a textbox corresponding to that |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 | 287 |
| 288 this.rectangle = this.getCoordinates_(newMarginsRectangle); | 288 this.rectangle = this.getCoordinates_(newMarginsRectangle); |
| 289 this.drawDraggableArea_(); | 289 this.drawDraggableArea_(); |
| 290 } | 290 } |
| 291 }; | 291 }; |
| 292 | 292 |
| 293 return { | 293 return { |
| 294 MarginsUIPair: MarginsUIPair | 294 MarginsUIPair: MarginsUIPair |
| 295 }; | 295 }; |
| 296 }); | 296 }); |
| OLD | NEW |