| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 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 29 matching lines...) Expand all Loading... |
| 40 #include "modules/websockets/WebSocketHandshake.h" | 40 #include "modules/websockets/WebSocketHandshake.h" |
| 41 #include "modules/websockets/WebSocketPerMessageDeflate.h" | 41 #include "modules/websockets/WebSocketPerMessageDeflate.h" |
| 42 #include "platform/Timer.h" | 42 #include "platform/Timer.h" |
| 43 #include "platform/network/SocketStreamHandleClient.h" | 43 #include "platform/network/SocketStreamHandleClient.h" |
| 44 #include "wtf/Deque.h" | 44 #include "wtf/Deque.h" |
| 45 #include "wtf/Forward.h" | 45 #include "wtf/Forward.h" |
| 46 #include "wtf/PassOwnPtr.h" | 46 #include "wtf/PassOwnPtr.h" |
| 47 #include "wtf/Vector.h" | 47 #include "wtf/Vector.h" |
| 48 #include "wtf/text/CString.h" | 48 #include "wtf/text/CString.h" |
| 49 | 49 |
| 50 namespace WebCore { | 50 namespace blink { |
| 51 | 51 |
| 52 class BlobDataHandle; | 52 class BlobDataHandle; |
| 53 class Document; | 53 class Document; |
| 54 class FileReaderLoader; | 54 class FileReaderLoader; |
| 55 class SocketStreamHandle; | 55 class SocketStreamHandle; |
| 56 class SocketStreamError; | 56 class SocketStreamError; |
| 57 class WebSocketChannelClient; | 57 class WebSocketChannelClient; |
| 58 | 58 |
| 59 class MainThreadWebSocketChannel FINAL : public WebSocketChannel, public SocketS
treamHandleClient, public FileReaderLoaderClient { | 59 class MainThreadWebSocketChannel FINAL : public WebSocketChannel, public SocketS
treamHandleClient, public FileReaderLoaderClient { |
| 60 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MainThreadWebSocketChannel); | 60 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(MainThreadWebSocketChannel); |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 241 // Source code position where construction happened. To be used to show a | 241 // Source code position where construction happened. To be used to show a |
| 242 // console message where no JS callstack info available. | 242 // console message where no JS callstack info available. |
| 243 String m_sourceURLAtConstruction; | 243 String m_sourceURLAtConstruction; |
| 244 unsigned m_lineNumberAtConstruction; | 244 unsigned m_lineNumberAtConstruction; |
| 245 | 245 |
| 246 WebSocketPerMessageDeflate m_perMessageDeflate; | 246 WebSocketPerMessageDeflate m_perMessageDeflate; |
| 247 | 247 |
| 248 WebSocketDeflateFramer m_deflateFramer; | 248 WebSocketDeflateFramer m_deflateFramer; |
| 249 }; | 249 }; |
| 250 | 250 |
| 251 } // namespace WebCore | 251 } // namespace blink |
| 252 | 252 |
| 253 #endif // MainThreadWebSocketChannel_h | 253 #endif // MainThreadWebSocketChannel_h |
| OLD | NEW |