Index: third_party/WebKit/public/web/WebLeakDetector.h |
diff --git a/third_party/WebKit/public/web/WebLeakDetector.h b/third_party/WebKit/public/web/WebLeakDetector.h |
index f3ae863b3126b49aceba9cd7cde056bacd1af149..10c6a2cd8858fcb2c41a028bb7519eee0baacacb 100644 |
--- a/third_party/WebKit/public/web/WebLeakDetector.h |
+++ b/third_party/WebKit/public/web/WebLeakDetector.h |
@@ -31,11 +31,12 @@ |
#ifndef WebLeakDetector_h |
#define WebLeakDetector_h |
-#include "WebFrame.h" |
#include "public/platform/WebCommon.h" |
namespace blink { |
+class WebFrame; |
+ |
class WebLeakDetectorClient { |
public: |
struct Result { |
@@ -79,7 +80,7 @@ public: |
// Perform initial stage of preparing for leak detection, |
// releasing references to resources held globally. |
- virtual void prepareForLeakDetection() = 0; |
+ virtual void prepareForLeakDetection(WebFrame*) = 0; |
// Garbage collect Blink's heaps and report leak counts. |
// |WebLeakDetectorClient::onLeakDetectionComplete()| is called |