OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Google Inc. All rights reserved. | 3 * Copyright (C) 2010 Google 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
288 void InspectorProfilerAgent::willEnterNestedRunLoop() | 288 void InspectorProfilerAgent::willEnterNestedRunLoop() |
289 { | 289 { |
290 idleStarted(); | 290 idleStarted(); |
291 } | 291 } |
292 | 292 |
293 void InspectorProfilerAgent::didLeaveNestedRunLoop() | 293 void InspectorProfilerAgent::didLeaveNestedRunLoop() |
294 { | 294 { |
295 idleFinished(); | 295 idleFinished(); |
296 } | 296 } |
297 | 297 |
| 298 void InspectorProfilerAgent::trace(Visitor* visitor) |
| 299 { |
| 300 visitor->trace(m_injectedScriptManager); |
| 301 InspectorBaseAgent::trace(visitor); |
| 302 } |
| 303 |
298 } // namespace WebCore | 304 } // namespace WebCore |
299 | 305 |
OLD | NEW |