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

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

Issue 93933014: Changes for Chrome 32 (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: More fixes for chrome 32/1700 roll Created 6 years, 11 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
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 #ifndef Dart$(INTERFACE)_h 7 #ifndef Dart$(INTERFACE)_h
8 #define Dart$(INTERFACE)_h 8 #define Dart$(INTERFACE)_h
9 9
10 #include "bindings/v8/ActiveDOMCallback.h" 10 #include "bindings/v8/ActiveDOMCallback.h"
(...skipping 29 matching lines...) Expand all
40 { 40 {
41 Dart_Handle object = Dart_GetNativeArgument(args, idx); 41 Dart_Handle object = Dart_GetNativeArgument(args, idx);
42 if (Dart_IsNull(object)) 42 if (Dart_IsNull(object))
43 return 0; 43 return 0;
44 return create(object, exception); 44 return create(object, exception);
45 } 45 }
46 46
47 $HANDLERS 47 $HANDLERS
48 48
49 private: 49 private:
50 Dart$(INTERFACE)(Dart_Handle object, Dart_Handle& exception, ScriptExecution Context* context) 50 Dart$(INTERFACE)(Dart_Handle object, Dart_Handle& exception, ExecutionContex t* context)
51 : ActiveDOMCallback(context) 51 : ActiveDOMCallback(context)
52 , m_callback(object, exception) 52 , m_callback(object, exception)
53 { 53 {
54 } 54 }
55 55
56 DartCallback m_callback; 56 DartCallback m_callback;
57 }; 57 };
58 58
59 } 59 }
60 60
61 #endif // Dart$(INTERFACE)_h 61 #endif // Dart$(INTERFACE)_h
OLDNEW
« tools/dom/scripts/systemnative.py ('K') | « tools/dom/scripts/systemnative.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698