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

Unified Diff: third_party/WebKit/Source/core/page/PagePopupController.cpp

Issue 1485123002: Drop [LegacyInterfaceTypeChecking] for PagePopupController (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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/page/PagePopupController.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/PagePopupController.cpp
diff --git a/third_party/WebKit/Source/core/page/PagePopupController.cpp b/third_party/WebKit/Source/core/page/PagePopupController.cpp
index be06d0937abace1ba5f770ddc005c2c477700b65..8bb10ab9cef10fcf9fa3a7b57be7b1a8570054f8 100644
--- a/third_party/WebKit/Source/core/page/PagePopupController.cpp
+++ b/third_party/WebKit/Source/core/page/PagePopupController.cpp
@@ -70,9 +70,9 @@ void PagePopupController::closePopup()
void PagePopupController::selectFontsFromOwnerDocument(Document* targetDocument)
{
- if (!targetDocument || !m_popupClient)
- return;
- m_popupClient->selectFontsFromOwnerDocument(*targetDocument);
+ ASSERT(targetDocument);
+ if (m_popupClient)
+ m_popupClient->selectFontsFromOwnerDocument(*targetDocument);
}
String PagePopupController::localizeNumberString(const String& numberString)
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/page/PagePopupController.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698