| Index: third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp
|
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp
|
| index 1782a2407bbf7fe5ed26f5fd5498e94d65650bff..84057d45310b159cafe732267ee4b5028745f885 100644
|
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp
|
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp
|
| @@ -154,7 +154,7 @@ IDBOpenDBRequest* IDBFactory::deleteDatabase(ScriptState* script_state,
|
| const String& name,
|
| ExceptionState& exception_state) {
|
| return DeleteDatabaseInternal(script_state, name, exception_state,
|
| - false /* force_close */);
|
| + /*force_close=*/false);
|
| }
|
|
|
| IDBOpenDBRequest* IDBFactory::CloseConnectionsAndDeleteDatabase(
|
| @@ -162,7 +162,7 @@ IDBOpenDBRequest* IDBFactory::CloseConnectionsAndDeleteDatabase(
|
| const String& name,
|
| ExceptionState& exception_state) {
|
| return DeleteDatabaseInternal(script_state, name, exception_state,
|
| - true /* force_close */);
|
| + /*force_close=*/true);
|
| }
|
|
|
| IDBOpenDBRequest* IDBFactory::DeleteDatabaseInternal(
|
|
|