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

Side by Side Diff: core/inspector/CodeGeneratorInspectorStrings.py

Issue 22498002: Roll IDL to multivm@1329 (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 4 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) 2013 Google Inc. All rights reserved. 1 # Copyright (c) 2013 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 } // namespace WebCore 123 } // namespace WebCore
124 #endif // !defined(InspectorFrontend_h) 124 #endif // !defined(InspectorFrontend_h)
125 """) 125 """)
126 126
127 backend_h = ( 127 backend_h = (
128 """#ifndef InspectorBackendDispatcher_h 128 """#ifndef InspectorBackendDispatcher_h
129 #define InspectorBackendDispatcher_h 129 #define InspectorBackendDispatcher_h
130 130
131 #include "InspectorTypeBuilder.h" 131 #include "InspectorTypeBuilder.h"
132 132
133 #include <wtf/PassRefPtr.h> 133 #include "wtf/PassRefPtr.h"
134 #include <wtf/RefCounted.h> 134 #include "wtf/RefCounted.h"
135 #include <wtf/text/WTFString.h> 135 #include "wtf/text/WTFString.h"
136 136
137 namespace WebCore { 137 namespace WebCore {
138 138
139 class InspectorAgent; 139 class InspectorAgent;
140 class JSONObject; 140 class JSONObject;
141 class JSONArray; 141 class JSONArray;
142 class InspectorFrontendChannel; 142 class InspectorFrontendChannel;
143 143
144 typedef String ErrorString; 144 typedef String ErrorString;
145 145
(...skipping 785 matching lines...) Expand 10 before | Expand all | Expand 10 after
931 }; 931 };
932 932
933 """) 933 """)
934 934
935 class_binding_builder_part_4 = ( 935 class_binding_builder_part_4 = (
936 """ static Builder<NoFieldsSet> create() 936 """ static Builder<NoFieldsSet> create()
937 { 937 {
938 return Builder<NoFieldsSet>(JSONObject::create()); 938 return Builder<NoFieldsSet>(JSONObject::create());
939 } 939 }
940 """) 940 """)
OLDNEW
« no previous file with comments | « core/inspector/CodeGeneratorInspector.py ('k') | core/inspector/CodeGeneratorInstrumentation.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698