| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 """) |
| OLD | NEW |