| Index: third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| index 032b305f25a45b69fdfebac95b2d26a9fc697802..de6b6cebccccfccb33590a986b04b7df6aa422aa 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8ProfilerAgentImpl.h
|
| @@ -34,7 +34,7 @@ public:
|
| void disable(ErrorString*) override;
|
| void setSamplingInterval(ErrorString*, int) override;
|
| void start(ErrorString*) override;
|
| - void stop(ErrorString*, RefPtr<protocol::TypeBuilder::Profiler::CPUProfile>&) override;
|
| + void stop(ErrorString*, OwnPtr<protocol::Profiler::CPUProfile>*) override;
|
|
|
| void consoleProfile(const String& title) override;
|
| void consoleProfileEnd(const String& title) override;
|
| @@ -43,11 +43,10 @@ public:
|
| void idleFinished();
|
|
|
| private:
|
| - void stop(ErrorString*, RefPtr<protocol::TypeBuilder::Profiler::CPUProfile>*);
|
| String nextProfileId();
|
|
|
| void startProfiling(const String& title);
|
| - PassRefPtr<protocol::TypeBuilder::Profiler::CPUProfile> stopProfiling(const String& title, bool serialize);
|
| + PassOwnPtr<protocol::Profiler::CPUProfile> stopProfiling(const String& title, bool serialize);
|
|
|
| bool isRecording() const;
|
|
|
|
|