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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview This file provides the DomEvent class.
7 */
8
9 goog.provide('image.collections.extension.DomEvent');
10
11 goog.require('goog.events.Event');
12
13 goog.scope(function() {
14
15
16
17 /**
18 * Represents the content script DOM event.
19 * @param {!DomEvent.Type} type The type of this event.
20 * @extends {goog.events.Event}
21 * @constructor
22 */
23 image.collections.extension.DomEvent = function(type) {
24 DomEvent.base(this, 'constructor', type);
25 };
26 goog.inherits(image.collections.extension.DomEvent, goog.events.Event);
27 var DomEvent = image.collections.extension.DomEvent;
28
29
30 /** @enum {string} */
31 DomEvent.Type = {
32 DOM_INITIALIZED: 'dom_initialized',
33 INITIALIZE_DOM: 'initialize_dom'
34 };
35
36 }); // goog.scope
OLDNEW
« 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