Chromium Code Reviews| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 651 * @return {string} | 651 * @return {string} |
| 652 */ | 652 */ |
| 653 WebInspector.copyLinkAddressLabel = function() | 653 WebInspector.copyLinkAddressLabel = function() |
| 654 { | 654 { |
| 655 return WebInspector.UIString.capitalize("Copy ^link ^address"); | 655 return WebInspector.UIString.capitalize("Copy ^link ^address"); |
| 656 } | 656 } |
| 657 | 657 |
| 658 /** | 658 /** |
| 659 * @return {string} | 659 * @return {string} |
| 660 */ | 660 */ |
| 661 WebInspector.copyPropertyPathLabel = function() | |
| 662 { | |
| 663 return WebInspector.UIString.capitalize("Copy ^property ^path"); | |
|
dgozman
2016/05/18 00:46:14
I still think you should inline this at callsite.
luoe
2016/05/18 21:15:47
Sorry, I missed this in the last patch. Will do.
| |
| 664 } | |
| 665 | |
| 666 /** | |
| 667 * @return {string} | |
| 668 */ | |
| 661 WebInspector.anotherProfilerActiveLabel = function() | 669 WebInspector.anotherProfilerActiveLabel = function() |
| 662 { | 670 { |
| 663 return WebInspector.UIString("Another profiler is already active"); | 671 return WebInspector.UIString("Another profiler is already active"); |
| 664 } | 672 } |
| 665 | 673 |
| 666 /** | 674 /** |
| 667 * @param {string|undefined} description | 675 * @param {string|undefined} description |
| 668 * @return {string} | 676 * @return {string} |
| 669 */ | 677 */ |
| 670 WebInspector.asyncStackTraceLabel = function(description) | 678 WebInspector.asyncStackTraceLabel = function(description) |
| (...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1914 * @param {string} title | 1922 * @param {string} title |
| 1915 * @return {!Element} | 1923 * @return {!Element} |
| 1916 */ | 1924 */ |
| 1917 WebInspector.linkifyDocumentationURLAsNode = function(article, title) | 1925 WebInspector.linkifyDocumentationURLAsNode = function(article, title) |
| 1918 { | 1926 { |
| 1919 return WebInspector.linkifyURLAsNode("https://developers.google.com/web/tool s/chrome-devtools/" + article, title, undefined, true); | 1927 return WebInspector.linkifyURLAsNode("https://developers.google.com/web/tool s/chrome-devtools/" + article, title, undefined, true); |
| 1920 } | 1928 } |
| 1921 | 1929 |
| 1922 /** @type {!WebInspector.ThemeSupport} */ | 1930 /** @type {!WebInspector.ThemeSupport} */ |
| 1923 WebInspector.themeSupport; | 1931 WebInspector.themeSupport; |
| OLD | NEW |