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

Unified Diff: third_party/document_image_extractor/src/controller.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/controller.js
diff --git a/third_party/document_image_extractor/src/controller.js b/third_party/document_image_extractor/src/controller.js
deleted file mode 100644
index e8acb951c08fe609ce83136e531e75b5a2392ad0..0000000000000000000000000000000000000000
--- a/third_party/document_image_extractor/src/controller.js
+++ /dev/null
@@ -1,44 +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.
-
-goog.provide('image.collections.extension.Controller');
-
-goog.require('goog.events.EventHandler');
-goog.require('goog.events.EventTarget');
-
-goog.scope(function() {
-
-
-
-/**
- * A base class for all controller classes. Controllers connect UI of the
- * 'Google Stars' Chrome extension (see go/stars for details) to backends
- * (such as GWS, Chrome Sync etc.) Should not be instantiated by itself.
- * Each derived controller should handle certain types of UI events
- * (e.g. search requests, clustering requests etc.)
- *
- * @extends {goog.events.EventTarget}
- * @constructor
- */
-image.collections.extension.Controller = function() {
- Controller.base(this, 'constructor');
-
- /** @protected {!goog.events.EventHandler} */
- this.eventHandler = new goog.events.EventHandler(this);
- this.registerDisposable(this.eventHandler);
-};
-goog.inherits(image.collections.extension.Controller, goog.events.EventTarget);
-var Controller = image.collections.extension.Controller;
-
-
-/**
- * Initializes the controller. By default, sets the parent event target
- * (controllers communicate with UI by handling and dispatching events
- * on this event target).
- * @param {!goog.events.EventTarget} parentEventTarget
- */
-Controller.prototype.initialize = function(parentEventTarget) {
- this.setParentEventTarget(parentEventTarget);
-};
-}); // goog.scope
« no previous file with comments | « third_party/document_image_extractor/src/constants.js ('k') | third_party/document_image_extractor/src/document_feature.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698