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

Side by Side Diff: lib/dom/templates/html/dartium/cpp_callback_header.template

Issue 10913125: Remove lib/dom directory! (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 #ifndef Dart$(INTERFACE)_h
8 #define Dart$(INTERFACE)_h
9
10 #include "ActiveDOMCallback.h"
11 #include "DartCallback.h"
12 #include "DartDOMWrapper.h"
13 #include "$(INTERFACE).h"
14
15 namespace WebCore {
16
17 class Dart$(INTERFACE) : public $(INTERFACE), public ActiveDOMCallback {
18 public:
19 typedef $(INTERFACE) NativeType;
20
21 static PassRefPtr<NativeType> create(Dart_Handle object, Dart_Handle& except ion)
22 {
23 return adoptRef(new Dart$(INTERFACE)(object, exception, DartUtilities::s criptExecutionContext()));
24 }
25
26 static PassRefPtr<NativeType> createWithNullCheck(Dart_Handle object, Dart_H andle& exception)
27 {
28 if (Dart_IsNull(object))
29 return 0;
30 return create(object, exception);
31 }
32 $HANDLERS
33
34 private:
35 Dart$(INTERFACE)(Dart_Handle object, Dart_Handle& exception, ScriptExecution Context* context)
36 : ActiveDOMCallback(context)
37 , m_callback(object, exception)
38 {
39 }
40
41 DartCallback m_callback;
42 };
43
44 }
45
46 #endif // Dart$(INTERFACE)_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698