| 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)
|
|
|