| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "modules/websockets/InspectorWebSocketEvents.h" | 48 #include "modules/websockets/InspectorWebSocketEvents.h" |
| 49 #include "modules/websockets/WebSocketChannelClient.h" | 49 #include "modules/websockets/WebSocketChannelClient.h" |
| 50 #include "modules/websockets/WebSocketFrame.h" | 50 #include "modules/websockets/WebSocketFrame.h" |
| 51 #include "modules/websockets/WebSocketHandleImpl.h" | 51 #include "modules/websockets/WebSocketHandleImpl.h" |
| 52 #include "platform/WebFrameScheduler.h" | 52 #include "platform/WebFrameScheduler.h" |
| 53 #include "platform/WebTaskRunner.h" | 53 #include "platform/WebTaskRunner.h" |
| 54 #include "platform/loader/fetch/UniqueIdentifier.h" | 54 #include "platform/loader/fetch/UniqueIdentifier.h" |
| 55 #include "platform/network/NetworkLog.h" | 55 #include "platform/network/NetworkLog.h" |
| 56 #include "platform/network/WebSocketHandshakeRequest.h" | 56 #include "platform/network/WebSocketHandshakeRequest.h" |
| 57 #include "platform/weborigin/SecurityOrigin.h" | 57 #include "platform/weborigin/SecurityOrigin.h" |
| 58 #include "platform/wtf/Functional.h" |
| 59 #include "platform/wtf/PtrUtil.h" |
| 58 #include "public/platform/InterfaceProvider.h" | 60 #include "public/platform/InterfaceProvider.h" |
| 59 #include "public/platform/Platform.h" | 61 #include "public/platform/Platform.h" |
| 60 #include "public/platform/WebTraceLocation.h" | 62 #include "public/platform/WebTraceLocation.h" |
| 61 #include "wtf/Functional.h" | |
| 62 #include "wtf/PtrUtil.h" | |
| 63 | 63 |
| 64 namespace blink { | 64 namespace blink { |
| 65 | 65 |
| 66 class DocumentWebSocketChannel::BlobLoader final | 66 class DocumentWebSocketChannel::BlobLoader final |
| 67 : public GarbageCollectedFinalized<DocumentWebSocketChannel::BlobLoader>, | 67 : public GarbageCollectedFinalized<DocumentWebSocketChannel::BlobLoader>, |
| 68 public FileReaderLoaderClient { | 68 public FileReaderLoaderClient { |
| 69 public: | 69 public: |
| 70 BlobLoader(PassRefPtr<BlobDataHandle>, DocumentWebSocketChannel*); | 70 BlobLoader(PassRefPtr<BlobDataHandle>, DocumentWebSocketChannel*); |
| 71 ~BlobLoader() override {} | 71 ~BlobLoader() override {} |
| 72 | 72 |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 WebSocketChannel::Trace(visitor); | 724 WebSocketChannel::Trace(visitor); |
| 725 } | 725 } |
| 726 | 726 |
| 727 std::ostream& operator<<(std::ostream& ostream, | 727 std::ostream& operator<<(std::ostream& ostream, |
| 728 const DocumentWebSocketChannel* channel) { | 728 const DocumentWebSocketChannel* channel) { |
| 729 return ostream << "DocumentWebSocketChannel " | 729 return ostream << "DocumentWebSocketChannel " |
| 730 << static_cast<const void*>(channel); | 730 << static_cast<const void*>(channel); |
| 731 } | 731 } |
| 732 | 732 |
| 733 } // namespace blink | 733 } // namespace blink |
| OLD | NEW |