| Index: third_party/WebKit/Source/core/frame/LocalFrame.h
|
| diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| index 243f9d97f1d2eda54694cced2685a3f86a7aa0b5..45f9220e33ba3ec265d56961cc2bd8ad8783be00 100644
|
| --- a/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| +++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
|
| @@ -296,7 +296,7 @@ inline FrameLoader& LocalFrame::Loader() const {
|
| }
|
|
|
| inline NavigationScheduler& LocalFrame::GetNavigationScheduler() const {
|
| - ASSERT(navigation_scheduler_);
|
| + DCHECK(navigation_scheduler_);
|
| return *navigation_scheduler_.Get();
|
| }
|
|
|
| @@ -337,7 +337,7 @@ inline void LocalFrame::SetInViewSourceMode(bool mode) {
|
| }
|
|
|
| inline EventHandler& LocalFrame::GetEventHandler() const {
|
| - ASSERT(event_handler_);
|
| + DCHECK(event_handler_);
|
| return *event_handler_;
|
| }
|
|
|
|
|