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

Unified Diff: Source/modules/performance/WorkerPerformance.h

Issue 236613005: Oilpan: Enable oilpan in modules/performance by default (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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/modules/performance/WorkerPerformance.h
diff --git a/Source/modules/performance/WorkerPerformance.h b/Source/modules/performance/WorkerPerformance.h
index afdcc372f938708c5ddaf4d25554c73befaa060e..72cc873386d00c37123284b1c1af7a69e44281c1 100644
--- a/Source/modules/performance/WorkerPerformance.h
+++ b/Source/modules/performance/WorkerPerformance.h
@@ -42,9 +42,12 @@ namespace WebCore {
class ExecutionContext;
-class WorkerPerformance : public RefCountedWillBeGarbageCollectedFinalized<WorkerPerformance>, public ScriptWrappable {
+class WorkerPerformance : public GarbageCollectedFinalized<WorkerPerformance>, public ScriptWrappable {
public:
- static PassRefPtrWillBeRawPtr<WorkerPerformance> create() { return adoptRefWillBeNoop(new WorkerPerformance()); }
+ static WorkerPerformance* create()
+ {
+ return new WorkerPerformance();
+ }
~WorkerPerformance();
double now(ExecutionContext*) const;
« no previous file with comments | « Source/modules/performance/WorkerGlobalScopePerformance.h ('k') | Source/modules/performance/WorkerPerformance.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698