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

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

Issue 1978323002: DevTools: reveal object path in console tooltip (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed console logs Created 4 years, 7 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/17 02:09:50 Just inline this at callsite.
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
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;
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698