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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp

Issue 2814253002: IndexedDB: Fix mocks/comments following the great blink rename (Closed)
Patch Set: Created 3 years, 8 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/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(
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp ('k') | third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698