| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 /** | |
| 6 * @fileoverview Collections constants. | |
| 7 * @author busaryev@google.com (Oleksiy Busaryev) | |
| 8 */ | |
| 9 goog.provide('gws.collections.common.Constants'); | |
| 10 | |
| 11 goog.scope(function() { | |
| 12 | |
| 13 var Constants = gws.collections.common.Constants; | |
| 14 | |
| 15 /** @type {number} The minimum width of extracted images. */ | |
| 16 Constants.EXTRACT_MIN_WIDTH = 100; | |
| 17 | |
| 18 | |
| 19 /** @type {number} The minimum height of extracted images. */ | |
| 20 Constants.EXTRACT_MIN_HEIGHT = 100; | |
| 21 | |
| 22 }); // goog.scope | |
| OLD | NEW |