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

Unified Diff: Source/core/timing/PerformanceMeasure.h

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/timing/PerformanceMark.h ('k') | Source/core/timing/PerformanceNavigation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/PerformanceMeasure.h
diff --git a/Source/core/timing/PerformanceMeasure.h b/Source/core/timing/PerformanceMeasure.h
index 9d73f894be11b962bafdb8d515b999077fa8abae..a75ea6ee3cc24c7f600bdc7e392816f26f61eed6 100644
--- a/Source/core/timing/PerformanceMeasure.h
+++ b/Source/core/timing/PerformanceMeasure.h
@@ -49,10 +49,8 @@ public:
}
private:
- PerformanceMeasure(const String& name, double startTime, double endTime) : PerformanceEntry(name, "measure", startTime, endTime)
- {
- ScriptWrappable::init(this);
- }
+ PerformanceMeasure(const String& name, double startTime, double endTime)
+ : PerformanceEntry(name, "measure", startTime, endTime) { }
virtual ~PerformanceMeasure() { }
};
« no previous file with comments | « Source/core/timing/PerformanceMark.h ('k') | Source/core/timing/PerformanceNavigation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698