Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(410)

Side by Side Diff: content/browser/websocket/websocket_blob_sender.h

Issue 2119973002: Port WebSockets to Mojo IPC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698