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

Side by Side Diff: Source/devtools/front_end/sdk/NetworkManager.js

Issue 406873002: Add the WOFF 2.0 MIME type (Closed) Base URL: svn:/​/​svn.chromium.org/​blink/​trunk
Patch Set: Created 6 years, 5 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 "image/x-icon": {"image": true}, 74 "image/x-icon": {"image": true},
75 "image/x-xbitmap": {"image": true}, 75 "image/x-xbitmap": {"image": true},
76 "font/ttf": {"font": true}, 76 "font/ttf": {"font": true},
77 "font/otf": {"font": true}, 77 "font/otf": {"font": true},
78 "font/woff": {"font": true}, 78 "font/woff": {"font": true},
79 "font/woff2": {"font": true}, 79 "font/woff2": {"font": true},
80 "font/truetype": {"font": true}, 80 "font/truetype": {"font": true},
81 "font/opentype": {"font": true}, 81 "font/opentype": {"font": true},
82 "application/octet-stream": {"font": true, "image": true}, 82 "application/octet-stream": {"font": true, "image": true},
83 "application/font-woff": {"font": true}, 83 "application/font-woff": {"font": true},
84 "application/font-woff2": {"font": true},
84 "application/x-font-woff": {"font": true}, 85 "application/x-font-woff": {"font": true},
85 "application/x-font-type1": {"font": true}, 86 "application/x-font-type1": {"font": true},
86 "application/x-font-ttf": {"font": true}, 87 "application/x-font-ttf": {"font": true},
87 "application/x-truetype-font": {"font": true}, 88 "application/x-truetype-font": {"font": true},
88 "text/javascript": {"script": true}, 89 "text/javascript": {"script": true},
89 "text/ecmascript": {"script": true}, 90 "text/ecmascript": {"script": true},
90 "application/javascript": {"script": true}, 91 "application/javascript": {"script": true},
91 "application/ecmascript": {"script": true}, 92 "application/ecmascript": {"script": true},
92 "application/x-javascript": {"script": true}, 93 "application/x-javascript": {"script": true},
93 "application/json": {"script": true}, 94 "application/json": {"script": true},
(...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after
563 * @param {string} documentURL 564 * @param {string} documentURL
564 * @param {!NetworkAgent.Initiator} initiator 565 * @param {!NetworkAgent.Initiator} initiator
565 */ 566 */
566 _createNetworkRequest: function(requestId, frameId, loaderId, url, documentU RL, initiator) 567 _createNetworkRequest: function(requestId, frameId, loaderId, url, documentU RL, initiator)
567 { 568 {
568 var networkRequest = new WebInspector.NetworkRequest(this._manager._targ et, requestId, url, documentURL, frameId, loaderId); 569 var networkRequest = new WebInspector.NetworkRequest(this._manager._targ et, requestId, url, documentURL, frameId, loaderId);
569 networkRequest.initiator = initiator; 570 networkRequest.initiator = initiator;
570 return networkRequest; 571 return networkRequest;
571 } 572 }
572 } 573 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698