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

Unified Diff: Source/core/timing/PerformanceMark.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/PerformanceEntry.cpp ('k') | Source/core/timing/PerformanceMeasure.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/PerformanceMark.h
diff --git a/Source/core/timing/PerformanceMark.h b/Source/core/timing/PerformanceMark.h
index d1a4cc19d17b36599f73d0ef18a174f6702d9e90..793cb80007430fc5b37505bf1d0aa984155f1a66 100644
--- a/Source/core/timing/PerformanceMark.h
+++ b/Source/core/timing/PerformanceMark.h
@@ -49,10 +49,8 @@ public:
}
private:
- PerformanceMark(const String& name, double startTime) : PerformanceEntry(name, "mark", startTime, startTime)
- {
- ScriptWrappable::init(this);
- }
+ PerformanceMark(const String& name, double startTime)
+ : PerformanceEntry(name, "mark", startTime, startTime) { }
virtual ~PerformanceMark() { }
};
« no previous file with comments | « Source/core/timing/PerformanceEntry.cpp ('k') | Source/core/timing/PerformanceMeasure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698