2 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 * @extends {WebInspector.Widget}
34 * @param {!WebInspector.ExtensionServer} server
37 * @param {string} className
39 WebInspector
.ExtensionView = function(server
, id
, src
, className
)
41 WebInspector
.Widget
.call(this);
42 this.setHideOnDetach();
43 this.element
.className
= "vbox flex-auto"; // Override
45 this._server
= server
;
47 this._iframe
= createElement("iframe");
48 this._iframe
.addEventListener("load", this._onLoad
.bind(this), false);
49 this._iframe
.src
= src
;
50 this._iframe
.className
= className
;
51 this.setDefaultFocusedElement(this._iframe
);
53 this.element
.appendChild(this._iframe
);
56 WebInspector
.ExtensionView
.prototype = {
59 if (typeof this._frameIndex
=== "number")
60 this._server
.notifyViewShown(this._id
, this._frameIndex
);
65 if (typeof this._frameIndex
=== "number")
66 this._server
.notifyViewHidden(this._id
);
71 var frames
= /** @type {!Array.<!Window>} */ (window
.frames
);
72 this._frameIndex
= Array
.prototype.indexOf
.call(frames
, this._iframe
.contentWindow
);
74 this._server
.notifyViewShown(this._id
, this._frameIndex
);
77 __proto__
: WebInspector
.Widget
.prototype
82 * @extends {WebInspector.VBox}
83 * @param {!WebInspector.ExtensionServer} server
86 WebInspector
.ExtensionNotifierView = function(server
, id
)
88 WebInspector
.VBox
.call(this);
90 this._server
= server
;
94 WebInspector
.ExtensionNotifierView
.prototype = {
97 this._server
.notifyViewShown(this._id
);
102 this._server
.notifyViewHidden(this._id
);
105 __proto__
: WebInspector
.VBox
.prototype