1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "libcef/common/net/upload_element.h" 6 7 #include "net/base/file_stream.h" 8 #include "net/base/net_errors.h" 9 10 namespace net { 11 UploadElement()12UploadElement::UploadElement() 13 : type_(TYPE_BYTES), 14 bytes_start_(nullptr), 15 bytes_length_(0), 16 file_range_offset_(0), 17 file_range_length_(std::numeric_limits<uint64_t>::max()) {} 18 ~UploadElement()19UploadElement::~UploadElement() {} 20 21 } // namespace net 22