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

Unified Diff: third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp

Issue 2387073002: reflow comments in Source/bindings/modules/v8 (Closed)
Patch Set: Created 4 years, 2 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/bindings/modules/v8/V8BindingForModules.cpp
diff --git a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp b/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
index a5a9a55959d01fd802c11a970769d02e00a563bb..2a6404cb3fa56a564153917ee6c6270fb613ff0a 100644
--- a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
+++ b/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
@@ -455,7 +455,8 @@ bool injectV8KeyIntoV8Value(v8::Isolate* isolate,
ASSERT(keyPath.getType() == IDBKeyPath::StringType);
Vector<String> keyPathElements = parseKeyPath(keyPath.string());
- // The conbination of a key generator and an empty key path is forbidden by spec.
+ // The conbination of a key generator and an empty key path is forbidden by
+ // spec.
if (!keyPathElements.size()) {
ASSERT_NOT_REACHED();
return false;
@@ -605,7 +606,8 @@ void assertPrimaryKeyValidOrInjectable(ScriptState* scriptState,
ScriptValue keyValue = ScriptValue::from(scriptState, value->primaryKey());
ScriptValue scriptValue(scriptState, deserializeIDBValueData(isolate, value));
- // This assertion is about already persisted data, so allow experimental types.
+ // This assertion is about already persisted data, so allow experimental
+ // types.
const bool allowExperimentalTypes = true;
TrackExceptionState exceptionState;
IDBKey* expectedKey = createIDBKeyFromValueAndKeyPath(

Powered by Google App Engine
This is Rietveld 408576698