OLD | NEW |
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(); |
OLD | NEW |