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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/RequestView.js

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 13 matching lines...) Expand all
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 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. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 /** 31 /**
32 * @unrestricted 32 * @unrestricted
33 */ 33 */
34 WebInspector.RequestView = class extends WebInspector.VBox { 34 Network.RequestView = class extends UI.VBox {
35 /** 35 /**
36 * @param {!WebInspector.NetworkRequest} request 36 * @param {!SDK.NetworkRequest} request
37 */ 37 */
38 constructor(request) { 38 constructor(request) {
39 super(); 39 super();
40 40
41 this.element.classList.add('request-view'); 41 this.element.classList.add('request-view');
42 this.request = request; 42 this.request = request;
43 } 43 }
44 44
45 /** 45 /**
46 * @param {!WebInspector.NetworkRequest} request 46 * @param {!SDK.NetworkRequest} request
47 * @return {boolean} 47 * @return {boolean}
48 */ 48 */
49 static hasTextContent(request) { 49 static hasTextContent(request) {
50 if (request.resourceType().isTextType()) 50 if (request.resourceType().isTextType())
51 return true; 51 return true;
52 if (request.resourceType() === WebInspector.resourceTypes.Other || request.h asErrorStatusCode()) 52 if (request.resourceType() === Common.resourceTypes.Other || request.hasErro rStatusCode())
53 return !!request.content && !request.contentEncoded; 53 return !!request.content && !request.contentEncoded;
54 return false; 54 return false;
55 } 55 }
56 56
57 /** 57 /**
58 * @param {!WebInspector.NetworkRequest} request 58 * @param {!SDK.NetworkRequest} request
59 * @return {!WebInspector.Widget} 59 * @return {!UI.Widget}
60 */ 60 */
61 static nonSourceViewForRequest(request) { 61 static nonSourceViewForRequest(request) {
62 switch (request.resourceType()) { 62 switch (request.resourceType()) {
63 case WebInspector.resourceTypes.Image: 63 case Common.resourceTypes.Image:
64 return new WebInspector.ImageView(request.mimeType, request); 64 return new SourceFrame.ImageView(request.mimeType, request);
65 case WebInspector.resourceTypes.Font: 65 case Common.resourceTypes.Font:
66 return new WebInspector.FontView(request.mimeType, request); 66 return new SourceFrame.FontView(request.mimeType, request);
67 default: 67 default:
68 return new WebInspector.RequestView(request); 68 return new Network.RequestView(request);
69 } 69 }
70 } 70 }
71 }; 71 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698