| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #ifndef WebSocketChannel_h | 31 #ifndef WebSocketChannel_h |
| 32 #define WebSocketChannel_h | 32 #define WebSocketChannel_h |
| 33 | 33 |
| 34 #include "core/frame/ConsoleTypes.h" | 34 #include "core/frame/ConsoleTypes.h" |
| 35 #include "platform/heap/Handle.h" | 35 #include "platform/heap/Handle.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/Noncopyable.h" | 37 #include "wtf/Noncopyable.h" |
| 38 #include "wtf/PassRefPtr.h" | |
| 39 #include "wtf/RefCounted.h" | 38 #include "wtf/RefCounted.h" |
| 40 #include "wtf/text/WTFString.h" | 39 #include "wtf/text/WTFString.h" |
| 41 | 40 |
| 42 namespace WebCore { | 41 namespace WebCore { |
| 43 | 42 |
| 44 class BlobDataHandle; | 43 class BlobDataHandle; |
| 45 class KURL; | 44 class KURL; |
| 46 class ExecutionContext; | 45 class ExecutionContext; |
| 47 class WebSocketChannelClient; | 46 class WebSocketChannelClient; |
| 48 | 47 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 virtual void resume() = 0; | 110 virtual void resume() = 0; |
| 112 | 111 |
| 113 virtual ~WebSocketChannel() { } | 112 virtual ~WebSocketChannel() { } |
| 114 | 113 |
| 115 virtual void trace(Visitor*) { } | 114 virtual void trace(Visitor*) { } |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace WebCore | 117 } // namespace WebCore |
| 119 | 118 |
| 120 #endif // WebSocketChannel_h | 119 #endif // WebSocketChannel_h |
| OLD | NEW |