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

Side by Side Diff: components/cronet/android/wrapped_channel_upload_element_reader.h

Issue 1546143002: Switch to standard integer types in components/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_CRONET_ANDROID_WRAPPED_CHANNEL_UPLOAD_ELEMENT_READER_H_ 5 #ifndef COMPONENTS_CRONET_ANDROID_WRAPPED_CHANNEL_UPLOAD_ELEMENT_READER_H_
6 #define COMPONENTS_CRONET_ANDROID_WRAPPED_CHANNEL_UPLOAD_ELEMENT_READER_H_ 6 #define COMPONENTS_CRONET_ANDROID_WRAPPED_CHANNEL_UPLOAD_ELEMENT_READER_H_
7 7
8 #include "base/basictypes.h" 8 #include <stdint.h>
9
9 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/macros.h"
10 #include "components/cronet/android/url_request_adapter.h" 12 #include "components/cronet/android/url_request_adapter.h"
11 #include "net/base/completion_callback.h" 13 #include "net/base/completion_callback.h"
12 #include "net/base/upload_element_reader.h" 14 #include "net/base/upload_element_reader.h"
13 15
14 namespace net { 16 namespace net {
15 class IOBuffer; 17 class IOBuffer;
16 } // namespace net 18 } // namespace net
17 19
18 namespace cronet { 20 namespace cronet {
19 21
20 // An UploadElementReader implementation for 22 // An UploadElementReader implementation for
21 // java.nio.channels.ReadableByteChannel. 23 // java.nio.channels.ReadableByteChannel.
22 // |channel_| should outlive this class because this class does not take the 24 // |channel_| should outlive this class because this class does not take the
23 // ownership of the data. 25 // ownership of the data.
24 class WrappedChannelElementReader : public net::UploadElementReader { 26 class WrappedChannelElementReader : public net::UploadElementReader {
25 public: 27 public:
26 WrappedChannelElementReader( 28 WrappedChannelElementReader(
27 scoped_refptr<URLRequestAdapter::URLRequestAdapterDelegate> delegate, 29 scoped_refptr<URLRequestAdapter::URLRequestAdapterDelegate> delegate,
28 uint64 length); 30 uint64_t length);
29 ~WrappedChannelElementReader() override; 31 ~WrappedChannelElementReader() override;
30 32
31 // UploadElementReader overrides: 33 // UploadElementReader overrides:
32 int Init(const net::CompletionCallback& callback) override; 34 int Init(const net::CompletionCallback& callback) override;
33 uint64 GetContentLength() const override; 35 uint64_t GetContentLength() const override;
34 uint64 BytesRemaining() const override; 36 uint64_t BytesRemaining() const override;
35 bool IsInMemory() const override; 37 bool IsInMemory() const override;
36 int Read(net::IOBuffer* buf, 38 int Read(net::IOBuffer* buf,
37 int buf_length, 39 int buf_length,
38 const net::CompletionCallback& callback) override; 40 const net::CompletionCallback& callback) override;
39 41
40 private: 42 private:
41 const uint64 length_; 43 const uint64_t length_;
42 uint64 offset_; 44 uint64_t offset_;
43 scoped_refptr<URLRequestAdapter::URLRequestAdapterDelegate> delegate_; 45 scoped_refptr<URLRequestAdapter::URLRequestAdapterDelegate> delegate_;
44 46
45 DISALLOW_COPY_AND_ASSIGN(WrappedChannelElementReader); 47 DISALLOW_COPY_AND_ASSIGN(WrappedChannelElementReader);
46 }; 48 };
47 49
48 } // namespace cronet 50 } // namespace cronet
49 51
50 #endif // COMPONENTS_CRONET_ANDROID_WRAPPED_CHANNEL_UPLOAD_ELEMENT_READER_H_ 52 #endif // COMPONENTS_CRONET_ANDROID_WRAPPED_CHANNEL_UPLOAD_ELEMENT_READER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698