OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 #include "public/platform/WebGraphicsContext3DProvider.h" | 129 #include "public/platform/WebGraphicsContext3DProvider.h" |
130 #include "public/platform/WebLayer.h" | 130 #include "public/platform/WebLayer.h" |
131 #include "wtf/InstanceCounter.h" | 131 #include "wtf/InstanceCounter.h" |
132 #include "wtf/PassOwnPtr.h" | 132 #include "wtf/PassOwnPtr.h" |
133 #include "wtf/dtoa.h" | 133 #include "wtf/dtoa.h" |
134 #include "wtf/text/StringBuffer.h" | 134 #include "wtf/text/StringBuffer.h" |
135 | 135 |
136 namespace WebCore { | 136 namespace WebCore { |
137 | 137 |
138 // FIXME: oilpan: These will be removed soon. | 138 // FIXME: oilpan: These will be removed soon. |
139 DEFINE_GC_INFO(InternalRuntimeFlags); | |
140 DEFINE_GC_INFO(TypeConversions); | |
141 DEFINE_GC_INFO(MallocStatistics); | |
142 DEFINE_GC_INFO(LayerRect); | |
143 DEFINE_GC_INFO(Internals); | |
144 | |
145 static MockPagePopupDriver* s_pagePopupDriver = 0; | 139 static MockPagePopupDriver* s_pagePopupDriver = 0; |
146 | 140 |
147 using namespace HTMLNames; | 141 using namespace HTMLNames; |
148 | 142 |
149 class InspectorFrontendChannelDummy : public InspectorFrontendChannel { | 143 class InspectorFrontendChannelDummy : public InspectorFrontendChannel { |
150 public: | 144 public: |
151 explicit InspectorFrontendChannelDummy(Page*); | 145 explicit InspectorFrontendChannelDummy(Page*); |
152 virtual ~InspectorFrontendChannelDummy() { } | 146 virtual ~InspectorFrontendChannelDummy() { } |
153 virtual bool sendMessageToFrontend(const String& message) OVERRIDE; | 147 virtual bool sendMessageToFrontend(const String& message) OVERRIDE; |
154 | 148 |
(...skipping 2222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2377 return promise.then(AddOneFunction::create(context)); | 2371 return promise.then(AddOneFunction::create(context)); |
2378 } | 2372 } |
2379 | 2373 |
2380 void Internals::trace(Visitor* visitor) | 2374 void Internals::trace(Visitor* visitor) |
2381 { | 2375 { |
2382 visitor->trace(m_runtimeFlags); | 2376 visitor->trace(m_runtimeFlags); |
2383 visitor->trace(m_profilers); | 2377 visitor->trace(m_profilers); |
2384 } | 2378 } |
2385 | 2379 |
2386 } | 2380 } |
OLD | NEW |