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

Unified Diff: Source/devtools/front_end/common/ResourceType.js

Issue 1164763004: DevTools: render category filters in a way that they don't clash. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: for landing Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/common/ResourceType.js
diff --git a/Source/devtools/front_end/common/ResourceType.js b/Source/devtools/front_end/common/ResourceType.js
index 5bd10232df65d3b286b3008f6c64e6cca861b2c1..88ec23b8698646a6bf537be5dd7353925e637e67 100644
--- a/Source/devtools/front_end/common/ResourceType.js
+++ b/Source/devtools/front_end/common/ResourceType.js
@@ -32,14 +32,16 @@
* @param {string} name
* @param {string} title
* @param {string} categoryTitle
+ * @param {string} shortCategoryTitle
* @param {string} color
* @param {boolean} isTextType
*/
-WebInspector.ResourceType = function(name, title, categoryTitle, color, isTextType)
+WebInspector.ResourceType = function(name, title, categoryTitle, shortCategoryTitle, color, isTextType)
{
this._name = name;
this._title = title;
this._categoryTitle = categoryTitle;
+ this._shortCategoryTitle = shortCategoryTitle;
this._color = color;
this._isTextType = isTextType;
}
@@ -72,6 +74,14 @@ WebInspector.ResourceType.prototype = {
/**
* @return {string}
*/
+ shortCategoryTitle: function()
+ {
+ return this._shortCategoryTitle;
+ },
+
+ /**
+ * @return {string}
+ */
color: function()
{
return this._color;
@@ -114,16 +124,16 @@ WebInspector.ResourceType.prototype = {
* @enum {!WebInspector.ResourceType}
*/
WebInspector.resourceTypes = {
- XHR: new WebInspector.ResourceType("xhr", "XHR", "XHR", "rgb(231,231,10)", true),
- Script: new WebInspector.ResourceType("script", "Script", "Script", "rgb(255,121,0)", true),
- Stylesheet: new WebInspector.ResourceType("stylesheet", "Stylesheet", "Style", "rgb(157,231,119)", true),
- Image: new WebInspector.ResourceType("image", "Image", "Images", "rgb(164,60,255)", false),
- Media: new WebInspector.ResourceType("media", "Media", "Media", "rgb(164,60,255)", false), // FIXME: Decide the color.
- Font: new WebInspector.ResourceType("font", "Font", "Fonts", "rgb(255,82,62)", false),
- Document: new WebInspector.ResourceType("document", "Document", "Documents", "rgb(47,102,236)", true),
- TextTrack: new WebInspector.ResourceType("texttrack", "TextTrack", "TextTracks", "rgb(164,60,255)", true), // FIXME: Decide the color.
- WebSocket: new WebInspector.ResourceType("websocket", "WebSocket", "WebSockets", "rgb(186,186,186)", false), // FIXME: Decide the color.
- Other: new WebInspector.ResourceType("other", "Other", "Other", "rgb(186,186,186)", false)
+ XHR: new WebInspector.ResourceType("xhr", "XHR", "XHR", "XHR", "rgb(231,231,10)", true),
+ Script: new WebInspector.ResourceType("script", "Script", "Scripts", "JS", "rgb(255,121,0)", true),
+ Stylesheet: new WebInspector.ResourceType("stylesheet", "Stylesheet", "Stylesheets", "CSS", "rgb(157,231,119)", true),
+ Image: new WebInspector.ResourceType("image", "Image", "Images", "Img", "rgb(164,60,255)", false),
+ Media: new WebInspector.ResourceType("media", "Media", "Media", "Media", "rgb(164,60,255)", false), // FIXME: Decide the color.
+ Font: new WebInspector.ResourceType("font", "Font", "Fonts", "Font", "rgb(255,82,62)", false),
+ Document: new WebInspector.ResourceType("document", "Document", "Documents", "Doc", "rgb(47,102,236)", true),
+ TextTrack: new WebInspector.ResourceType("texttrack", "TextTrack", "TextTracks", "TextTracks", "rgb(164,60,255)", true), // FIXME: Decide the color.
+ WebSocket: new WebInspector.ResourceType("websocket", "WebSocket", "WebSockets", "WS", "rgb(186,186,186)", false), // FIXME: Decide the color.
+ Other: new WebInspector.ResourceType("other", "Other", "Other", "Other", "rgb(186,186,186)", false)
}
WebInspector.ResourceType.mimeTypesForExtensions = {

Powered by Google App Engine
This is Rietveld 408576698