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

Unified Diff: third_party/WebKit/Source/web/WebLeakDetector.cpp

Issue 1546603003: Ensure zoom level is not updated if main frame is WebRemoteFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: third_party/WebKit/Source/web/WebLeakDetector.cpp
diff --git a/third_party/WebKit/Source/web/WebLeakDetector.cpp b/third_party/WebKit/Source/web/WebLeakDetector.cpp
index e334b9f547076870826a6097f22b7a1cddee9a2c..7275d31d689f76fa2d9f1d1156aea53786e1f221 100644
--- a/third_party/WebKit/Source/web/WebLeakDetector.cpp
+++ b/third_party/WebKit/Source/web/WebLeakDetector.cpp
@@ -64,7 +64,7 @@ public:
~WebLeakDetectorImpl() override {}
- void prepareForLeakDetection(WebLocalFrame*) override;
+ void prepareForLeakDetection() override;
void collectGarbageAndReport() override;
private:
@@ -77,7 +77,7 @@ private:
int m_numberOfGCNeeded;
};
-void WebLeakDetectorImpl::prepareForLeakDetection(WebLocalFrame* frame)
+void WebLeakDetectorImpl::prepareForLeakDetection()
{
v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::HandleScope handleScope(isolate);

Powered by Google App Engine
This is Rietveld 408576698