Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(123)

Unified Diff: third_party/document_image_extractor/src/document_feature.js

Issue 1138123002: Update third_party/document_image_extractor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/document_image_extractor/src/document_feature.js
diff --git a/third_party/document_image_extractor/src/document_feature.js b/third_party/document_image_extractor/src/document_feature.js
index 31e4e4961e017339c699a3a1eab61a526b017507..7c0b6fb1a752bf099629293559bc07e06153f01e 100644
--- a/third_party/document_image_extractor/src/document_feature.js
+++ b/third_party/document_image_extractor/src/document_feature.js
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-goog.provide('image.collections.extension.DocumentFeature');
+goog.provide('image.collections.extension.domextractor.DocumentFeature');
goog.scope(function() {
@@ -13,11 +13,11 @@ goog.scope(function() {
* @param {number} relevance Relevance of this feature to the document.
* @constructor
*/
-image.collections.extension.DocumentFeature = function(relevance) {
+image.collections.extension.domextractor.DocumentFeature = function(relevance) {
/** @private {number} */
this.relevance_ = relevance;
};
-var DocumentFeature = image.collections.extension.DocumentFeature;
+var DocumentFeature = image.collections.extension.domextractor.DocumentFeature;
/**

Powered by Google App Engine
This is Rietveld 408576698