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

Side by Side Diff: Source/devtools/front_end/common/NotificationService.js

Issue 426553003: [DevTools] Run tests only after all UI bits are initialized. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2014 The Chromium Authors. All rights reserved. 2 * Copyright 2014 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 /** 7 /**
8 * @constructor 8 * @constructor
9 * @extends {WebInspector.Object} 9 * @extends {WebInspector.Object}
10 */ 10 */
11 WebInspector.NotificationService = function() { } 11 WebInspector.NotificationService = function() { }
12 12
13 WebInspector.NotificationService.prototype = { 13 WebInspector.NotificationService.prototype = {
14 __proto__: WebInspector.Object.prototype 14 __proto__: WebInspector.Object.prototype
15 } 15 }
16 16
17 WebInspector.NotificationService.Events = { 17 WebInspector.NotificationService.Events = {
18 InspectorLoaded: "InspectorLoaded", 18 InspectorLoadedForTests: "InspectorLoadedForTests",
apavlov 2014/07/28 12:30:31 Seva, isn't this a CodeSchool-consumed event? Or d
vsevik 2014/07/29 08:42:15 This one is not used by codeschool.
19 SelectedNodeChanged: "SelectedNodeChanged" 19 SelectedNodeChanged: "SelectedNodeChanged"
20 } 20 }
21 21
22 WebInspector.notifications = new WebInspector.NotificationService(); 22 WebInspector.notifications = new WebInspector.NotificationService();
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698