| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Google Inc. All rights reserved. | 3 * Copyright (C) 2013 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 21 matching lines...) Expand all Loading... |
| 32 #include "core/workers/WorkerConsole.h" | 32 #include "core/workers/WorkerConsole.h" |
| 33 | 33 |
| 34 #include "bindings/v8/ScriptCallStackFactory.h" | 34 #include "bindings/v8/ScriptCallStackFactory.h" |
| 35 #include "bindings/v8/ScriptProfiler.h" | 35 #include "bindings/v8/ScriptProfiler.h" |
| 36 #include "core/inspector/ConsoleAPITypes.h" | 36 #include "core/inspector/ConsoleAPITypes.h" |
| 37 #include "core/inspector/InspectorConsoleInstrumentation.h" | 37 #include "core/inspector/InspectorConsoleInstrumentation.h" |
| 38 #include "core/inspector/ScriptArguments.h" | 38 #include "core/inspector/ScriptArguments.h" |
| 39 #include "core/inspector/ScriptCallStack.h" | 39 #include "core/inspector/ScriptCallStack.h" |
| 40 #include "core/inspector/ScriptProfile.h" | 40 #include "core/inspector/ScriptProfile.h" |
| 41 #include "core/inspector/WorkerInspectorController.h" | 41 #include "core/inspector/WorkerInspectorController.h" |
| 42 #include "core/page/ConsoleBase.h" | 42 #include "core/frame/ConsoleBase.h" |
| 43 #include "core/page/ConsoleTypes.h" | 43 #include "core/frame/ConsoleTypes.h" |
| 44 #include "core/workers/WorkerGlobalScope.h" | 44 #include "core/workers/WorkerGlobalScope.h" |
| 45 #include "core/workers/WorkerReportingProxy.h" | 45 #include "core/workers/WorkerReportingProxy.h" |
| 46 #include "core/workers/WorkerThread.h" | 46 #include "core/workers/WorkerThread.h" |
| 47 #include "platform/TraceEvent.h" | 47 #include "platform/TraceEvent.h" |
| 48 | 48 |
| 49 #include "wtf/text/WTFString.h" | 49 #include "wtf/text/WTFString.h" |
| 50 | 50 |
| 51 namespace WebCore { | 51 namespace WebCore { |
| 52 | 52 |
| 53 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope) | 53 WorkerConsole::WorkerConsole(WorkerGlobalScope* scope) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 75 | 75 |
| 76 bool WorkerConsole::profilerEnabled() | 76 bool WorkerConsole::profilerEnabled() |
| 77 { | 77 { |
| 78 return InspectorInstrumentation::profilerEnabled(m_scope); | 78 return InspectorInstrumentation::profilerEnabled(m_scope); |
| 79 } | 79 } |
| 80 | 80 |
| 81 // FIXME: add memory getter | 81 // FIXME: add memory getter |
| 82 | 82 |
| 83 } // namespace WebCore | 83 } // namespace WebCore |
| 84 | 84 |
| OLD | NEW |