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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBVersionChangeEvent.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/IDBVersionChangeEvent.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBVersionChangeEvent.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBVersionChangeEvent.cpp
index 4de95928a759526a9533069e5257adf0fbbd13f5..75dcf68a8ff3643b343adbceb9a80e5188bdb142 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBVersionChangeEvent.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBVersionChangeEvent.cpp
@@ -38,7 +38,7 @@ IDBVersionChangeEvent::IDBVersionChangeEvent(
const Nullable<unsigned long long>& new_version,
WebIDBDataLoss data_loss,
const String& data_loss_message)
- : Event(event_type, false /*canBubble*/, false /*cancelable*/),
+ : Event(event_type, /*can_bubble=*/false, /*cancelable=*/false),
old_version_(old_version),
new_version_(new_version),
data_loss_(data_loss),
@@ -47,7 +47,7 @@ IDBVersionChangeEvent::IDBVersionChangeEvent(
IDBVersionChangeEvent::IDBVersionChangeEvent(
const AtomicString& event_type,
const IDBVersionChangeEventInit& initializer)
- : Event(event_type, false /*canBubble*/, false /*cancelable*/),
+ : Event(event_type, /*can_bubble=*/false, /*cancelable=*/false),
old_version_(initializer.oldVersion()),
new_version_(nullptr),
data_loss_(kWebIDBDataLossNone) {

Powered by Google App Engine
This is Rietveld 408576698