OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "wtf/RefCounted.h" | 42 #include "wtf/RefCounted.h" |
43 #include "wtf/Threading.h" | 43 #include "wtf/Threading.h" |
44 #include "wtf/Vector.h" | 44 #include "wtf/Vector.h" |
45 #include "wtf/WeakPtr.h" | 45 #include "wtf/WeakPtr.h" |
46 #include "wtf/text/WTFString.h" | 46 #include "wtf/text/WTFString.h" |
47 | 47 |
48 namespace blink { | 48 namespace blink { |
49 class WebWaitableEvent; | 49 class WebWaitableEvent; |
50 } | 50 } |
51 | 51 |
52 namespace WebCore { | 52 namespace blink { |
53 | 53 |
54 class BlobDataHandle; | 54 class BlobDataHandle; |
55 class KURL; | 55 class KURL; |
56 class ExecutionContext; | 56 class ExecutionContext; |
57 class ThreadableWebSocketChannelClientWrapper; | 57 class ThreadableWebSocketChannelClientWrapper; |
58 class ThreadableWebSocketChannelSyncHelper; | 58 class ThreadableWebSocketChannelSyncHelper; |
59 class WorkerGlobalScope; | 59 class WorkerGlobalScope; |
60 class WorkerLoaderProxy; | 60 class WorkerLoaderProxy; |
61 class WorkerRunLoop; | 61 class WorkerRunLoop; |
62 | 62 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 }; | 198 }; |
199 | 199 |
200 WorkerThreadableWebSocketChannel(WorkerGlobalScope&, WebSocketChannelClient*
, const String& sourceURL, unsigned lineNumber); | 200 WorkerThreadableWebSocketChannel(WorkerGlobalScope&, WebSocketChannelClient*
, const String& sourceURL, unsigned lineNumber); |
201 | 201 |
202 const RefPtrWillBeMember<ThreadableWebSocketChannelClientWrapper> m_workerCl
ientWrapper; | 202 const RefPtrWillBeMember<ThreadableWebSocketChannelClientWrapper> m_workerCl
ientWrapper; |
203 RefPtrWillBeMember<Bridge> m_bridge; | 203 RefPtrWillBeMember<Bridge> m_bridge; |
204 String m_sourceURLAtConnection; | 204 String m_sourceURLAtConnection; |
205 unsigned m_lineNumberAtConnection; | 205 unsigned m_lineNumberAtConnection; |
206 }; | 206 }; |
207 | 207 |
208 } // namespace WebCore | 208 } // namespace blink |
209 | 209 |
210 #endif // WorkerThreadableWebSocketChannel_h | 210 #endif // WorkerThreadableWebSocketChannel_h |
OLD | NEW |