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

Unified Diff: tools/dom/templates/html/dartium/cpp_callback_header.template

Issue 2978213002: Removed DARTIUM codegen for IDLS (sdk/lib/dartium) (Closed)
Patch Set: Update generated darttemplate Created 3 years, 5 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: tools/dom/templates/html/dartium/cpp_callback_header.template
diff --git a/tools/dom/templates/html/dartium/cpp_callback_header.template b/tools/dom/templates/html/dartium/cpp_callback_header.template
deleted file mode 100644
index 2a245c41536b6b2b6e0aa74220aa36fcb44d5228..0000000000000000000000000000000000000000
--- a/tools/dom/templates/html/dartium/cpp_callback_header.template
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-#ifndef Dart$(INTERFACE)_h
-#define Dart$(INTERFACE)_h
-
-#include "bindings/v8/ActiveDOMCallback.h"
-#include "bindings/dart/DartCallback.h"
-#include "bindings/dart/DartDOMWrapper.h"
-#include "$(INTERFACE).h"
-
-namespace WebCore {
-
-class Dart$(INTERFACE) : public $(INTERFACE), public ActiveDOMCallback {
-public:
- typedef Dart$(INTERFACE) NativeType;
-
- static PassOwnPtr<NativeType> create(Dart_Handle object, Dart_Handle& exception)
- {
- return adoptPtr(new Dart$(INTERFACE)(object, exception, DartUtilities::scriptExecutionContext()));
- }
-
- static PassOwnPtr<NativeType> createWithNullCheck(Dart_Handle object, Dart_Handle& exception)
- {
- if (Dart_IsNull(object))
- return PassOwnPtr<NativeType>();
- return create(object, exception);
- }
-
- static PassOwnPtr<NativeType> create(Dart_NativeArguments args, int idx, Dart_Handle& exception)
- {
- Dart_Handle object = Dart_GetNativeArgument(args, idx);
- return create(object, exception);
- }
-
- static PassOwnPtr<NativeType> createWithNullCheck(Dart_NativeArguments args, int idx, Dart_Handle& exception)
- {
- Dart_Handle object = Dart_GetNativeArgument(args, idx);
- if (Dart_IsNull(object))
- return PassOwnPtr<NativeType>();
- return create(object, exception);
- }
-
-$HANDLERS
-
-private:
- Dart$(INTERFACE)(Dart_Handle object, Dart_Handle& exception, ExecutionContext* context)
- : ActiveDOMCallback(context)
- , m_callback(object, exception)
- {
- }
-
- DartCallback m_callback;
-};
-
-}
-
-#endif // Dart$(INTERFACE)_h

Powered by Google App Engine
This is Rietveld 408576698