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

Unified Diff: Source/devtools/front_end/profiler/ProfilesPanel.js

Issue 356843008: Fix private member access violations in profiler module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed apavlov's comments Created 6 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/profiler/ProfilesPanel.js
diff --git a/Source/devtools/front_end/profiler/ProfilesPanel.js b/Source/devtools/front_end/profiler/ProfilesPanel.js
index 123b2e7778e5169aeb0c51aa0dee3071b76df759..ca0d7a1f8b348dfc42b786fa6abc33d539534eb6 100644
--- a/Source/devtools/front_end/profiler/ProfilesPanel.js
+++ b/Source/devtools/front_end/profiler/ProfilesPanel.js
@@ -55,6 +55,14 @@ WebInspector.ProfileType.Events = {
WebInspector.ProfileType.prototype = {
/**
+ * @return {number}
+ */
+ nextProfileUid: function()
+ {
+ return this._nextProfileUid;
+ },
+
+ /**
* @return {boolean}
*/
hasTemporaryView: function()

Powered by Google App Engine
This is Rietveld 408576698