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

Unified Diff: third_party/WebKit/Source/web/tests/WebFrameTest.cpp

Issue 2785583003: Remove redundant WebLocalFrame* parameter from didCreateDocumentElement (Closed)
Patch Set: Created 3 years, 9 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: third_party/WebKit/Source/web/tests/WebFrameTest.cpp
diff --git a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
index b17d570639093875c1df7bb5afbd68c0132bea9f..f857133d3b52e1104755394a45c2e5137444993e 100644
--- a/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
+++ b/third_party/WebKit/Source/web/tests/WebFrameTest.cpp
@@ -6216,9 +6216,7 @@ class TestWillInsertBodyWebFrameClient
m_didLoad = true;
}
- void didCreateDocumentElement(WebLocalFrame*) override {
- EXPECT_EQ(0, m_numBodies);
- }
+ void didCreateDocumentElement() override { EXPECT_EQ(0, m_numBodies); }
void willInsertBody(WebLocalFrame*) override { m_numBodies++; }
« no previous file with comments | « third_party/WebKit/Source/web/LocalFrameClientImpl.cpp ('k') | third_party/WebKit/public/web/WebFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698