Home | History | Annotate | Download | only in common
      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     InspectorAgentEnabledForTests: "InspectorAgentEnabledForTests",
     19     SelectedNodeChanged: "SelectedNodeChanged"
     20 }
     21 
     22 WebInspector.notifications = new WebInspector.NotificationService();
     23