| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_WEBSOCKET_BLOB_SENDER_H_ | 5 #ifndef CONTENT_BROWSER_WEBSOCKET_WEBSOCKET_BLOB_SENDER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_WEBSOCKET_BLOB_SENDER_H_ | 6 #define CONTENT_BROWSER_WEBSOCKET_WEBSOCKET_BLOB_SENDER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <iosfwd> | 11 #include <iosfwd> |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| (...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 net::CompletionCallback callback_; | 130 net::CompletionCallback callback_; |
| 131 scoped_refptr<net::IOBuffer> buffer_; | 131 scoped_refptr<net::IOBuffer> buffer_; |
| 132 std::unique_ptr<storage::BlobReader> reader_; | 132 std::unique_ptr<storage::BlobReader> reader_; |
| 133 const std::unique_ptr<Channel> channel_; | 133 const std::unique_ptr<Channel> channel_; |
| 134 | 134 |
| 135 DISALLOW_COPY_AND_ASSIGN(WebSocketBlobSender); | 135 DISALLOW_COPY_AND_ASSIGN(WebSocketBlobSender); |
| 136 }; | 136 }; |
| 137 | 137 |
| 138 } // namespace content | 138 } // namespace content |
| 139 | 139 |
| 140 #endif // CONTENT_BROWSER_RENDERER_HOST_WEBSOCKET_BLOB_SENDER_H_ | 140 #endif // CONTENT_BROWSER_WEBSOCKET_WEBSOCKET_BLOB_SENDER_H_ |
| OLD | NEW |