Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / source_frame / ResourceView.js
1 /*
2  * Copyright (C) 2007, 2008 Apple Inc.  All rights reserved.
3  * Copyright (C) IBM Corp. 2009  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * 1.  Redistributions of source code must retain the above copyright
10  *     notice, this list of conditions and the following disclaimer.
11  * 2.  Redistributions in binary form must reproduce the above copyright
12  *     notice, this list of conditions and the following disclaimer in the
13  *     documentation and/or other materials provided with the distribution.
14  * 3.  Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15  *     its contributors may be used to endorse or promote products derived
16  *     from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21  * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 /**
31  * @extends {WebInspector.VBox}
32  * @constructor
33  */
34 WebInspector.ResourceView = function(resource)
35 {
36     WebInspector.VBox.call(this);
37     this.registerRequiredCSS("resourceView.css");
38
39     this.element.classList.add("resource-view");
40     this.resource = resource;
41 }
42
43 WebInspector.ResourceView.prototype = {
44     /**
45      * @return {boolean}
46      */
47     hasContent: function()
48     {
49         return false;
50     },
51
52     __proto__: WebInspector.VBox.prototype
53 }
54
55 /**
56  * @param {!WebInspector.Resource} resource
57  * @return {boolean}
58  */
59 WebInspector.ResourceView.hasTextContent = function(resource)
60 {
61     if (resource.type.isTextType())
62         return true;
63     if (resource.type === WebInspector.resourceTypes.Other)
64         return !!resource.content && !resource.contentEncoded;
65     return false;
66 }
67
68 /**
69  * @param {!WebInspector.Resource} resource
70  */
71 WebInspector.ResourceView.nonSourceViewForResource = function(resource)
72 {
73     switch (resource.type) {
74     case WebInspector.resourceTypes.Image:
75         return new WebInspector.ImageView(resource);
76     case WebInspector.resourceTypes.Font:
77         return new WebInspector.FontView(resource);
78     default:
79         return new WebInspector.ResourceView(resource);
80     }
81 }
82
83 /**
84  * @extends {WebInspector.SourceFrame}
85  * @constructor
86  * @param {!WebInspector.Resource} resource
87  */
88 WebInspector.ResourceSourceFrame = function(resource)
89 {
90     this._resource = resource;
91     WebInspector.SourceFrame.call(this, resource);
92 }
93
94 WebInspector.ResourceSourceFrame.prototype = {
95     get resource()
96     {
97         return this._resource;
98     },
99
100     populateTextAreaContextMenu: function(contextMenu, lineNumber)
101     {
102         contextMenu.appendApplicableItems(this._resource);
103     },
104
105     __proto__: WebInspector.SourceFrame.prototype
106 }
107
108 /**
109  * @constructor
110  * @extends {WebInspector.VBox}
111  * @param {!WebInspector.Resource} resource
112  */
113 WebInspector.ResourceSourceFrameFallback = function(resource)
114 {
115     WebInspector.VBox.call(this);
116     this._resource = resource;
117     this.element.classList.add("script-view");
118     this._content = this.element.createChild("div", "script-view-fallback monospace");
119 }
120
121 WebInspector.ResourceSourceFrameFallback.prototype = {
122     wasShown: function()
123     {
124         if (!this._contentRequested) {
125             this._contentRequested = true;
126             this._resource.requestContent(this._contentLoaded.bind(this));
127         }
128     },
129
130     /**
131      * @param {?string} content
132      */
133     _contentLoaded: function(content)
134     {
135         this._content.textContent = content;
136     },
137
138     __proto__: WebInspector.VBox.prototype
139 }