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

Unified Diff: third_party/WebKit/Source/bindings/tests/idls/core/TestLegacyCallbackInterface.idl

Issue 2837923003: Make NodeFilter a legacy callback interface. (Closed)
Patch Set: legacy_callback_interface.*.tmpl, etc. Created 3 years, 8 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/tests/idls/core/TestLegacyCallbackInterface.idl
diff --git a/third_party/WebKit/Source/bindings/tests/idls/core/TestLegacyCallbackInterface.idl b/third_party/WebKit/Source/bindings/tests/idls/core/TestLegacyCallbackInterface.idl
new file mode 100644
index 0000000000000000000000000000000000000000..78d7a1a0e06545829268ccc3dd68cda01a969f86
--- /dev/null
+++ b/third_party/WebKit/Source/bindings/tests/idls/core/TestLegacyCallbackInterface.idl
@@ -0,0 +1,9 @@
+// Copyright 2017 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.
+
+callback interface TestLegacyCallbackInterface {
+ const unsigned short CONST_VALUE_USHORT_42 = 42;
+
+ unsigned short acceptNode(Node node);
+};

Powered by Google App Engine
This is Rietveld 408576698