109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)/*
209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * Copyright 2014 The Chromium Authors. All rights reserved.
309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * Use of this source code is governed by a BSD-style license that can be
409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * found in the LICENSE file.
509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) */
609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)/**
809380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * @constructor
909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) * @extends {WebInspector.Object}
1009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles) */
1109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)WebInspector.NotificationService = function() { }
1209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
1309380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)WebInspector.NotificationService.prototype = {
1409380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    __proto__: WebInspector.Object.prototype
1509380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)}
1609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
1709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)WebInspector.NotificationService.Events = {
189e12abdf8c3a23d52091ea54ebb6a04d327f9300Torne (Richard Coles)    InspectorAgentEnabledForTests: "InspectorAgentEnabledForTests",
1909380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    SelectedNodeChanged: "SelectedNodeChanged"
2009380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)}
2109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)
2209380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)WebInspector.notifications = new WebInspector.NotificationService();
23