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

Unified Diff: Source/bindings/tests/results/core/TestPermissiveDictionary.h

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
Index: Source/bindings/tests/results/core/TestPermissiveDictionary.h
diff --git a/Source/bindings/tests/results/core/TestPermissiveDictionary.h b/Source/bindings/tests/results/core/TestPermissiveDictionary.h
new file mode 100644
index 0000000000000000000000000000000000000000..d38c2bd511b4c0e20454cd26e9de9bf5d31fe0fd
--- /dev/null
+++ b/Source/bindings/tests/results/core/TestPermissiveDictionary.h
@@ -0,0 +1,34 @@
+// 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!
+
+#ifndef TestPermissiveDictionary_h
+#define TestPermissiveDictionary_h
+
+#include "bindings/core/v8/Nullable.h"
+#include "platform/heap/Handle.h"
+
+namespace blink {
+
+class TestPermissiveDictionary {
+ ALLOW_ONLY_INLINE_ALLOCATION();
+public:
+ TestPermissiveDictionary();
+
+ bool hasBooleanMember() const { return !m_booleanMember.isNull(); }
+ bool booleanMember() const { return m_booleanMember.get(); }
+ void setBooleanMember(bool value) { m_booleanMember = value; }
+
+ virtual void trace(Visitor*);
+
+private:
+ Nullable<bool> m_booleanMember;
+
+ friend class V8TestPermissiveDictionary;
+};
+
+} // namespace blink
+
+#endif // TestPermissiveDictionary_h

Powered by Google App Engine
This is Rietveld 408576698