OLD | NEW |
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 Loading... |
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 Loading... |
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; |
OLD | NEW |