Index: third_party/document_image_extractor/src/constants.js |
diff --git a/third_party/document_image_extractor/src/constants.js b/third_party/document_image_extractor/src/constants.js |
deleted file mode 100644 |
index 77a856a00aa1aa840cb0bf7c139248913354af3e..0000000000000000000000000000000000000000 |
--- a/third_party/document_image_extractor/src/constants.js |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-// Copyright 2015 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-/** |
- * @fileoverview Collections constants. |
- * @author busaryev@google.com (Oleksiy Busaryev) |
- */ |
-goog.provide('gws.collections.common.Constants'); |
- |
-goog.scope(function() { |
- |
-var Constants = gws.collections.common.Constants; |
- |
-/** @type {number} The minimum width of extracted images. */ |
-Constants.EXTRACT_MIN_WIDTH = 100; |
- |
- |
-/** @type {number} The minimum height of extracted images. */ |
-Constants.EXTRACT_MIN_HEIGHT = 100; |
- |
-}); // goog.scope |