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

Unified Diff: third_party/document_image_extractor/third_party/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/third_party/src/controller.js
diff --git a/third_party/document_image_extractor/third_party/src/controller.js b/third_party/document_image_extractor/third_party/src/controller.js
deleted file mode 100644
index 3aa1961c99b37a52a76a529b4dbba4d935407d68..0000000000000000000000000000000000000000
--- a/third_party/document_image_extractor/third_party/src/controller.js
+++ /dev/null
@@ -1,40 +0,0 @@
-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

Powered by Google App Engine
This is Rietveld 408576698