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

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: renamed to InspectorUILoadedForTests 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
« no previous file with comments | « Source/devtools/front_end/Tests.js ('k') | Source/devtools/front_end/common/WebInspector.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 InspectorUILoadedForTests: "InspectorUILoadedForTests",
19 SelectedNodeChanged: "SelectedNodeChanged" 19 SelectedNodeChanged: "SelectedNodeChanged"
20 } 20 }
21 21
22 WebInspector.notifications = new WebInspector.NotificationService(); 22 WebInspector.notifications = new WebInspector.NotificationService();
OLDNEW
« no previous file with comments | « Source/devtools/front_end/Tests.js ('k') | Source/devtools/front_end/common/WebInspector.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698