| Index: third_party/WebKit/Source/web/LocalFileSystemClient.cpp
|
| diff --git a/third_party/WebKit/Source/web/LocalFileSystemClient.cpp b/third_party/WebKit/Source/web/LocalFileSystemClient.cpp
|
| index 6587418cb9f024b30d6101bf57845a7fdcce07f4..a48522ce72bcf0597b45968ccec2be9d2f35609a 100644
|
| --- a/third_party/WebKit/Source/web/LocalFileSystemClient.cpp
|
| +++ b/third_party/WebKit/Source/web/LocalFileSystemClient.cpp
|
| @@ -53,19 +53,19 @@ LocalFileSystemClient::~LocalFileSystemClient()
|
|
|
| bool LocalFileSystemClient::requestFileSystemAccessSync(ExecutionContext* context)
|
| {
|
| - ASSERT(context);
|
| + DCHECK(context);
|
| if (context->isDocument()) {
|
| ASSERT_NOT_REACHED();
|
| return false;
|
| }
|
|
|
| - ASSERT(context->isWorkerGlobalScope());
|
| + DCHECK(context->isWorkerGlobalScope());
|
| return WorkerContentSettingsClient::from(*toWorkerGlobalScope(context))->requestFileSystemAccessSync();
|
| }
|
|
|
| void LocalFileSystemClient::requestFileSystemAccessAsync(ExecutionContext* context, PassOwnPtr<ContentSettingCallbacks> callbacks)
|
| {
|
| - ASSERT(context);
|
| + DCHECK(context);
|
| if (!context->isDocument()) {
|
| ASSERT_NOT_REACHED();
|
| return;
|
|
|