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

Side by Side Diff: Source/devtools/front_end/host/InspectorAppHost.js

Issue 725583003: [DevTools] Prepare to pass modified InspectorFrontendHost to inspector app. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixed comment Created 6 years, 1 month 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
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @interface
7 */
8 function InspectorAppHostAPI()
9 {
10 }
11
12 InspectorAppHostAPI.prototype = {
13 /**
14 * @param {!Window} window
15 */
16 inspectorAppWindowLoaded: function(window) { },
17
18 beforeInspectorAppLoad: function() { },
19
20 afterInspectorAppLoad: function() { }
21 }
22
23 /**
24 * @type {!InspectorAppHostAPI}
25 */
26 var InspectorAppHost;
27
28 /**
29 * @suppressGlobalPropertiesCheck
30 */
31 (function()
32 {
33 if (window.parent !== window) {
34 InspectorAppHost = window.parent.InspectorAppHost;
35 InspectorAppHost.inspectorAppWindowLoaded(window);
36 }
37 })();
OLDNEW
« no previous file with comments | « Source/devtools/front_end/devtools_app/module.json ('k') | Source/devtools/front_end/host/InspectorFrontendHost.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698