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

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

Issue 2834053003: Split V8Binding (Closed)
Patch Set: Rebase Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "bindings/modules/v8/V8BindingForModules.h" 26 #include "bindings/modules/v8/V8BindingForModules.h"
27 27
28 #include "bindings/core/v8/SerializedScriptValue.h" 28 #include "bindings/core/v8/SerializedScriptValue.h"
29 #include "bindings/core/v8/SerializedScriptValueFactory.h" 29 #include "bindings/core/v8/SerializedScriptValueFactory.h"
30 #include "bindings/core/v8/V8ArrayBuffer.h" 30 #include "bindings/core/v8/V8ArrayBuffer.h"
31 #include "bindings/core/v8/V8ArrayBufferView.h" 31 #include "bindings/core/v8/V8ArrayBufferView.h"
32 #include "bindings/core/v8/V8Binding.h" 32 #include "bindings/core/v8/V8BindingForCore.h"
33 #include "bindings/core/v8/V8Blob.h" 33 #include "bindings/core/v8/V8Blob.h"
34 #include "bindings/core/v8/V8DOMStringList.h" 34 #include "bindings/core/v8/V8DOMStringList.h"
35 #include "bindings/core/v8/V8File.h" 35 #include "bindings/core/v8/V8File.h"
36 #include "bindings/core/v8/V8Uint8Array.h" 36 #include "bindings/core/v8/V8Uint8Array.h"
37 #include "bindings/modules/v8/ToV8ForModules.h" 37 #include "bindings/modules/v8/ToV8ForModules.h"
38 #include "bindings/modules/v8/V8IDBCursor.h" 38 #include "bindings/modules/v8/V8IDBCursor.h"
39 #include "bindings/modules/v8/V8IDBCursorWithValue.h" 39 #include "bindings/modules/v8/V8IDBCursorWithValue.h"
40 #include "bindings/modules/v8/V8IDBDatabase.h" 40 #include "bindings/modules/v8/V8IDBDatabase.h"
41 #include "bindings/modules/v8/V8IDBIndex.h" 41 #include "bindings/modules/v8/V8IDBIndex.h"
42 #include "bindings/modules/v8/V8IDBKeyRange.h" 42 #include "bindings/modules/v8/V8IDBKeyRange.h"
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after
667 if (expected_key && expected_key->IsEqual(value->PrimaryKey())) 667 if (expected_key && expected_key->IsEqual(value->PrimaryKey()))
668 return; 668 return;
669 669
670 bool injected = InjectV8KeyIntoV8Value( 670 bool injected = InjectV8KeyIntoV8Value(
671 isolate, key_value.V8Value(), script_value.V8Value(), value->KeyPath()); 671 isolate, key_value.V8Value(), script_value.V8Value(), value->KeyPath());
672 DCHECK(injected); 672 DCHECK(injected);
673 } 673 }
674 #endif 674 #endif
675 675
676 } // namespace blink 676 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698