| Index: third_party/WebKit/Source/platform/exported/WebContentSettingCallbacks.cpp
|
| diff --git a/third_party/WebKit/Source/platform/exported/WebContentSettingCallbacks.cpp b/third_party/WebKit/Source/platform/exported/WebContentSettingCallbacks.cpp
|
| index 50b0aaeb200c167190dfbfd541c5919bf561f763..c1da7697b3ee9ddf181bfa39516a23faceb19d96 100644
|
| --- a/third_party/WebKit/Source/platform/exported/WebContentSettingCallbacks.cpp
|
| +++ b/third_party/WebKit/Source/platform/exported/WebContentSettingCallbacks.cpp
|
| @@ -43,13 +43,13 @@ void WebContentSettingCallbacks::Assign(
|
| }
|
|
|
| void WebContentSettingCallbacks::DoAllow() {
|
| - ASSERT(!private_.IsNull());
|
| + DCHECK(!private_.IsNull());
|
| private_->Callbacks()->OnAllowed();
|
| private_.Reset();
|
| }
|
|
|
| void WebContentSettingCallbacks::DoDeny() {
|
| - ASSERT(!private_.IsNull());
|
| + DCHECK(!private_.IsNull());
|
| private_->Callbacks()->OnDenied();
|
| private_.Reset();
|
| }
|
|
|