Index: third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
index b07af8249d59922b79952f614851c45174976470..5121f4dc0f66125340fbe26264744611a0b2135e 100644 |
--- a/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBDatabase.cpp |
@@ -201,8 +201,9 @@ void IDBDatabase::onChanges( |
} |
observer->callback()->call( |
- observer, IDBObserverChanges::create(this, transaction, observations, |
- map_entry.second)); |
+ observer, |
+ IDBObserverChanges::create(this, transaction, observations, |
+ map_entry.second)); |
if (transaction) |
transaction->setActive(false); |
} |
@@ -279,9 +280,10 @@ IDBObjectStore* IDBDatabase::createObjectStore(const String& name, |
return nullptr; |
} |
- if (autoIncrement && ((keyPath.getType() == IDBKeyPath::StringType && |
- keyPath.string().isEmpty()) || |
- keyPath.getType() == IDBKeyPath::ArrayType)) { |
+ if (autoIncrement && |
+ ((keyPath.getType() == IDBKeyPath::StringType && |
+ keyPath.string().isEmpty()) || |
+ keyPath.getType() == IDBKeyPath::ArrayType)) { |
exceptionState.throwDOMException(InvalidAccessError, |
"The autoIncrement option was set but the " |
"keyPath option was empty or an array."); |