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

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

Issue 2829923003: Remove redundant WebLocalFrame* parameter from DidReceiveTitle (Closed)
Patch Set: Rebase Created 3 years, 8 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/LocalFrameClientImpl.cpp
diff --git a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
index 2d5533bedc1c6b3a76d62f9b186eb4f60f3ee86f..698387f6aa7d6434a44ed3ac9d5f4eb288947e32 100644
--- a/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
+++ b/third_party/WebKit/Source/web/LocalFrameClientImpl.cpp
@@ -378,8 +378,7 @@ void LocalFrameClientImpl::DispatchDidStartProvisionalLoad(
void LocalFrameClientImpl::DispatchDidReceiveTitle(const String& title) {
if (web_frame_->Client()) {
- web_frame_->Client()->DidReceiveTitle(web_frame_, title,
- kWebTextDirectionLeftToRight);
+ web_frame_->Client()->DidReceiveTitle(title, kWebTextDirectionLeftToRight);
}
}
« no previous file with comments | « content/shell/test_runner/web_frame_test_proxy.h ('k') | third_party/WebKit/Source/web/tests/WebFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698