| 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 15 matching lines...) Expand all Loading... |
| 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 28 */ | 28 */ |
| 29 | 29 |
| 30 #ifndef WorkerConsole_h | 30 #ifndef WorkerConsole_h |
| 31 #define WorkerConsole_h | 31 #define WorkerConsole_h |
| 32 | 32 |
| 33 #include "core/inspector/ConsoleAPITypes.h" | 33 #include "core/inspector/ConsoleAPITypes.h" |
| 34 #include "core/frame/ConsoleBase.h" | 34 #include "core/frame/ConsoleBase.h" |
| 35 #include "core/frame/ConsoleTypes.h" | 35 #include "core/frame/ConsoleTypes.h" |
| 36 #include "core/workers/WorkerGlobalScope.h" | |
| 37 #include "platform/heap/Handle.h" | 36 #include "platform/heap/Handle.h" |
| 38 #include "wtf/PassRefPtr.h" | 37 #include "wtf/PassRefPtr.h" |
| 39 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 40 #include "wtf/RefPtr.h" | 39 #include "wtf/RefPtr.h" |
| 41 #include "wtf/text/WTFString.h" | 40 #include "wtf/text/WTFString.h" |
| 42 | 41 |
| 43 namespace blink { | 42 namespace blink { |
| 44 | 43 |
| 45 class ConsoleMessage; | 44 class ConsoleMessage; |
| 46 class ScriptArguments; | 45 class ScriptArguments; |
| 46 class WorkerGlobalScope; |
| 47 | 47 |
| 48 class WorkerConsole FINAL : public ConsoleBase { | 48 class WorkerConsole FINAL : public ConsoleBase { |
| 49 public: | 49 public: |
| 50 static PassRefPtrWillBeRawPtr<WorkerConsole> create(WorkerGlobalScope* scope
) | 50 static PassRefPtrWillBeRawPtr<WorkerConsole> create(WorkerGlobalScope* scope
) |
| 51 { | 51 { |
| 52 return adoptRefWillBeNoop(new WorkerConsole(scope)); | 52 return adoptRefWillBeNoop(new WorkerConsole(scope)); |
| 53 } | 53 } |
| 54 virtual ~WorkerConsole(); | 54 virtual ~WorkerConsole(); |
| 55 | 55 |
| 56 virtual void trace(Visitor*) OVERRIDE; | 56 virtual void trace(Visitor*) OVERRIDE; |
| 57 | 57 |
| 58 protected: | 58 protected: |
| 59 virtual ExecutionContext* context() OVERRIDE; | 59 virtual ExecutionContext* context() OVERRIDE; |
| 60 virtual void reportMessageToConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>)
OVERRIDE; | 60 virtual void reportMessageToConsole(PassRefPtrWillBeRawPtr<ConsoleMessage>)
OVERRIDE; |
| 61 | 61 |
| 62 private: | 62 private: |
| 63 explicit WorkerConsole(WorkerGlobalScope*); | 63 explicit WorkerConsole(WorkerGlobalScope*); |
| 64 | 64 |
| 65 RawPtrWillBeMember<WorkerGlobalScope> m_scope; | 65 RawPtrWillBeMember<WorkerGlobalScope> m_scope; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace blink | 68 } // namespace blink |
| 69 | 69 |
| 70 #endif // WorkerConsole_h | 70 #endif // WorkerConsole_h |
| OLD | NEW |