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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/ui/UIUtils.js

Issue 2297903005: DevTools: (anonymous function) ==> (anonymous) (Closed)
Patch Set: tests Created 4 years, 3 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). 4 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com).
5 * Copyright (C) 2009 Joseph Pecoraro 5 * Copyright (C) 2009 Joseph Pecoraro
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 10 *
(...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 WebInspector.appendStyle(body, "ui/inspectorStyle.css"); 1280 WebInspector.appendStyle(body, "ui/inspectorStyle.css");
1281 WebInspector.appendStyle(body, "ui/popover.css"); 1281 WebInspector.appendStyle(body, "ui/popover.css");
1282 } 1282 }
1283 1283
1284 /** 1284 /**
1285 * @param {string} name 1285 * @param {string} name
1286 * @return {string} 1286 * @return {string}
1287 */ 1287 */
1288 WebInspector.beautifyFunctionName = function(name) 1288 WebInspector.beautifyFunctionName = function(name)
1289 { 1289 {
1290 return name || WebInspector.UIString("(anonymous function)"); 1290 return name || WebInspector.UIString("(anonymous)");
1291 } 1291 }
1292 1292
1293 /** 1293 /**
1294 * @param {string} localName 1294 * @param {string} localName
1295 * @param {string} typeExtension 1295 * @param {string} typeExtension
1296 * @param {!Object} prototype 1296 * @param {!Object} prototype
1297 * @return {function()} 1297 * @return {function()}
1298 * @suppressGlobalPropertiesCheck 1298 * @suppressGlobalPropertiesCheck
1299 * @template T 1299 * @template T
1300 */ 1300 */
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
2011 * @param {string} title 2011 * @param {string} title
2012 * @return {!Element} 2012 * @return {!Element}
2013 */ 2013 */
2014 WebInspector.linkifyDocumentationURLAsNode = function(article, title) 2014 WebInspector.linkifyDocumentationURLAsNode = function(article, title)
2015 { 2015 {
2016 return WebInspector.linkifyURLAsNode("https://developers.google.com/web/tool s/chrome-devtools/" + article, title, undefined, true); 2016 return WebInspector.linkifyURLAsNode("https://developers.google.com/web/tool s/chrome-devtools/" + article, title, undefined, true);
2017 } 2017 }
2018 2018
2019 /** @type {!WebInspector.ThemeSupport} */ 2019 /** @type {!WebInspector.ThemeSupport} */
2020 WebInspector.themeSupport; 2020 WebInspector.themeSupport;
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/inspector/tracing/timeline-misc/timeline-grouped-invalidations-expected.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698