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

Unified Diff: third_party/WebKit/Source/core/html/shadow/PickerIndicatorElement.cpp

Issue 2259173002: Fix style errors in core/html/shadow/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/core/html/shadow/PickerIndicatorElement.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/PickerIndicatorElement.cpp b/third_party/WebKit/Source/core/html/shadow/PickerIndicatorElement.cpp
index a48f52cc4fe8e33eea6c50e884f6f9155c30e103..025b6ec7e7270d7eaf5debf47d12baa1fad0355d 100644
--- a/third_party/WebKit/Source/core/html/shadow/PickerIndicatorElement.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/PickerIndicatorElement.cpp
@@ -61,7 +61,7 @@ PickerIndicatorElement* PickerIndicatorElement::create(Document& document, Picke
PickerIndicatorElement::~PickerIndicatorElement()
{
- ASSERT(!m_chooser);
+ DCHECK(!m_chooser);
}
LayoutObject* PickerIndicatorElement::createLayoutObject(const ComputedStyle&)
@@ -133,7 +133,7 @@ void PickerIndicatorElement::openPopup()
Element& PickerIndicatorElement::ownerElement() const
{
- ASSERT(m_pickerIndicatorOwner);
+ DCHECK(m_pickerIndicatorOwner);
return m_pickerIndicatorOwner->pickerOwnerElement();
}

Powered by Google App Engine
This is Rietveld 408576698