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

Unified Diff: third_party/document_image_extractor/src/dom_event.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/dom_event.js
diff --git a/third_party/document_image_extractor/src/dom_event.js b/third_party/document_image_extractor/src/dom_event.js
deleted file mode 100644
index 3880d56487c700524fb8b68eaae873dc543dfbec..0000000000000000000000000000000000000000
--- a/third_party/document_image_extractor/src/dom_event.js
+++ /dev/null
@@ -1,36 +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 This file provides the DomEvent class.
- */
-
-goog.provide('image.collections.extension.DomEvent');
-
-goog.require('goog.events.Event');
-
-goog.scope(function() {
-
-
-
-/**
- * Represents the content script DOM event.
- * @param {!DomEvent.Type} type The type of this event.
- * @extends {goog.events.Event}
- * @constructor
- */
-image.collections.extension.DomEvent = function(type) {
- DomEvent.base(this, 'constructor', type);
-};
-goog.inherits(image.collections.extension.DomEvent, goog.events.Event);
-var DomEvent = image.collections.extension.DomEvent;
-
-
-/** @enum {string} */
-DomEvent.Type = {
- DOM_INITIALIZED: 'dom_initialized',
- INITIALIZE_DOM: 'initialize_dom'
-};
-
-}); // goog.scope
« no previous file with comments | « third_party/document_image_extractor/src/dom_controller.js ('k') | third_party/document_image_extractor/src/dom_utils.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698