Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / sdk / NotificationService.js
1 /*
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
4  * found in the LICENSE file.
5  */
6
7 /**
8  * @constructor
9  * @extends {WebInspector.Object}
10  */
11 WebInspector.NotificationService = function() { }
12
13 WebInspector.NotificationService.prototype = {
14     __proto__: WebInspector.Object.prototype
15 }
16
17 WebInspector.NotificationService.Events = {
18     InspectorLoaded: "InspectorLoaded",
19     SelectedNodeChanged: "SelectedNodeChanged"
20 }
21
22 WebInspector.notifications = new WebInspector.NotificationService();