Chromium Code Reviews| Index: Source/modules/performance/WorkerPerformance.h |
| diff --git a/Source/modules/performance/WorkerPerformance.h b/Source/modules/performance/WorkerPerformance.h |
| index b51870b044f09f24137254a1a6faffe27ed24017..9229c3dbc084b91b68fa945f2f1ee32b98ec798f 100644 |
| --- a/Source/modules/performance/WorkerPerformance.h |
| +++ b/Source/modules/performance/WorkerPerformance.h |
| @@ -41,6 +41,7 @@ |
| namespace WebCore { |
| class ExecutionContext; |
| +class MemoryInfo; |
| class WorkerPerformance : public RefCountedWillBeGarbageCollectedFinalized<WorkerPerformance>, public ScriptWrappable { |
| DECLARE_GC_INFO; |
| @@ -49,6 +50,7 @@ public: |
| ~WorkerPerformance(); |
| double now(ExecutionContext*) const; |
| + PassRefPtr<MemoryInfo> memory() const; |
|
sof
2014/03/20 20:19:12
Change this to PassRefPtrWillBeRawPtr to make it O
Pan
2014/03/24 07:31:18
Oh, yes, I haven't aware this change, thanks.
|
| void trace(Visitor*) { } |