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

Unified Diff: Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp

Issue 795833004: Use dictionaries for context creation attributes. Eliminate custom bindings. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased. Created 6 years 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
« no previous file with comments | « Source/bindings/tests/results/core/V8TestPermissiveDictionary.h ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
diff --git a/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp b/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..a4e9d220c673000327b9b96dd72ee8b871d6ce15
--- /dev/null
+++ b/Source/bindings/tests/results/core/V8TestPermissiveDictionary.cpp
@@ -0,0 +1,61 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
+
+#include "config.h"
+#include "V8TestPermissiveDictionary.h"
+
+#include "bindings/core/v8/ExceptionState.h"
+
+namespace blink {
+
+void V8TestPermissiveDictionary::toImpl(v8::Isolate* isolate, v8::Handle<v8::Value> v8Value, TestPermissiveDictionary& impl, ExceptionState& exceptionState)
+{
+ if (isUndefinedOrNull(v8Value))
+ return;
+ if (!v8Value->IsObject()) {
+ // Do nothing.
+ return;
+ }
+
+ v8::Local<v8::Object> v8Object = v8Value->ToObject(isolate);
+ v8::TryCatch block;
+ v8::Local<v8::Value> booleanMemberValue = v8Object->Get(v8String(isolate, "booleanMember"));
+ if (block.HasCaught()) {
+ exceptionState.rethrowV8Exception(block.Exception());
+ return;
+ }
+ if (booleanMemberValue.IsEmpty() || booleanMemberValue->IsUndefined()) {
+ // Do nothing.
+ } else {
+ bool booleanMember = booleanMemberValue->BooleanValue();
+ impl.setBooleanMember(booleanMember);
+ }
+
+}
+
+v8::Handle<v8::Value> toV8(const TestPermissiveDictionary& impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
+{
+ v8::Handle<v8::Object> v8Object = v8::Object::New(isolate);
+ toV8TestPermissiveDictionary(impl, v8Object, creationContext, isolate);
+ return v8Object;
+}
+
+void toV8TestPermissiveDictionary(const TestPermissiveDictionary& impl, v8::Handle<v8::Object> dictionary, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
+{
+ if (impl.hasBooleanMember()) {
+ dictionary->Set(v8String(isolate, "booleanMember"), v8Boolean(impl.booleanMember(), isolate));
+ }
+
+}
+
+TestPermissiveDictionary NativeValueTraits<TestPermissiveDictionary>::nativeValue(const v8::Handle<v8::Value>& value, v8::Isolate* isolate, ExceptionState& exceptionState)
+{
+ TestPermissiveDictionary impl;
+ V8TestPermissiveDictionary::toImpl(isolate, value, impl, exceptionState);
+ return impl;
+}
+
+} // namespace blink
« no previous file with comments | « Source/bindings/tests/results/core/V8TestPermissiveDictionary.h ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698