Home | History | Annotate | Download | only in extensions
      1 /*
      2  * Copyright (C) 2012 Google Inc. All rights reserved.
      3  *
      4  * Redistribution and use in source and binary forms, with or without
      5  * modification, are permitted provided that the following conditions are
      6  * met:
      7  *
      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
     13  * distribution.
     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.
     17  *
     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.
     29  */
     30 
     31 /**
     32  * @constructor
     33  * @extends {WebInspector.View}
     34  * @param {string} id
     35  * @param {string} src
     36  * @param {string} className
     37  */
     38 WebInspector.ExtensionView = function(id, src, className)
     39 {
     40     WebInspector.View.call(this);
     41     this.element.className = "extension-view fill"; // Override
     42 
     43     this._id = id;
     44     this._iframe = document.createElement("iframe");
     45     this._iframe.addEventListener("load", this._onLoad.bind(this), false);
     46     this._iframe.src = src;
     47     this._iframe.className = className;
     48     this.setDefaultFocusedElement(this._iframe);
     49 
     50     this.element.appendChild(this._iframe);
     51 }
     52 
     53 WebInspector.ExtensionView.prototype = {
     54     wasShown: function()
     55     {
     56         if (typeof this._frameIndex === "number")
     57             WebInspector.extensionServer.notifyViewShown(this._id, this._frameIndex);
     58     },
     59 
     60     willHide: function()
     61     {
     62         if (typeof this._frameIndex === "number")
     63             WebInspector.extensionServer.notifyViewHidden(this._id);
     64     },
     65 
     66     _onLoad: function()
     67     {
     68         var frames = /** @type {!Array.<!Window>} */ (window.frames);
     69         this._frameIndex = Array.prototype.indexOf.call(frames, this._iframe.contentWindow);
     70         if (this.isShowing())
     71             WebInspector.extensionServer.notifyViewShown(this._id, this._frameIndex);
     72     },
     73 
     74     __proto__: WebInspector.View.prototype
     75 }
     76 
     77 /**
     78  * @constructor
     79  * @extends {WebInspector.VBox}
     80  * @param {string} id
     81  */
     82 WebInspector.ExtensionNotifierView = function(id)
     83 {
     84     WebInspector.VBox.call(this);
     85 
     86     this._id = id;
     87 }
     88 
     89 WebInspector.ExtensionNotifierView.prototype = {
     90     wasShown: function()
     91     {
     92         WebInspector.extensionServer.notifyViewShown(this._id);
     93     },
     94 
     95     willHide: function()
     96     {
     97         WebInspector.extensionServer.notifyViewHidden(this._id);
     98     },
     99 
    100     __proto__: WebInspector.VBox.prototype
    101 }
    102