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

Side by Side Diff: storage/browser/fileapi/file_system_url_request_job.cc

Issue 539143002: Migrate webkit/browser/ to storage/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 (c) 2012 The Chromium Authors. All rights reserved. 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 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 #include "webkit/browser/fileapi/file_system_url_request_job.h" 5 #include "storage/browser/fileapi/file_system_url_request_job.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
11 #include "base/files/file_path.h" 11 #include "base/files/file_path.h"
12 #include "base/files/file_util_proxy.h" 12 #include "base/files/file_util_proxy.h"
13 #include "base/message_loop/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "base/message_loop/message_loop_proxy.h" 14 #include "base/message_loop/message_loop_proxy.h"
15 #include "base/threading/thread_restrictions.h" 15 #include "base/threading/thread_restrictions.h"
16 #include "base/time/time.h" 16 #include "base/time/time.h"
17 #include "build/build_config.h" 17 #include "build/build_config.h"
18 #include "net/base/file_stream.h" 18 #include "net/base/file_stream.h"
19 #include "net/base/io_buffer.h" 19 #include "net/base/io_buffer.h"
20 #include "net/base/mime_util.h" 20 #include "net/base/mime_util.h"
21 #include "net/base/net_errors.h" 21 #include "net/base/net_errors.h"
22 #include "net/base/net_util.h" 22 #include "net/base/net_util.h"
23 #include "net/http/http_response_headers.h" 23 #include "net/http/http_response_headers.h"
24 #include "net/http/http_response_info.h" 24 #include "net/http/http_response_info.h"
25 #include "net/http/http_util.h" 25 #include "net/http/http_util.h"
26 #include "net/url_request/url_request.h" 26 #include "net/url_request/url_request.h"
27 #include "storage/browser/blob/file_stream_reader.h"
28 #include "storage/browser/fileapi/file_system_context.h"
29 #include "storage/browser/fileapi/file_system_operation_runner.h"
30 #include "storage/common/fileapi/file_system_util.h"
27 #include "url/gurl.h" 31 #include "url/gurl.h"
28 #include "webkit/browser/blob/file_stream_reader.h"
29 #include "webkit/browser/fileapi/file_system_context.h"
30 #include "webkit/browser/fileapi/file_system_operation_runner.h"
31 #include "webkit/common/fileapi/file_system_util.h"
32 32
33 using net::NetworkDelegate; 33 using net::NetworkDelegate;
34 using net::URLRequest; 34 using net::URLRequest;
35 using net::URLRequestJob; 35 using net::URLRequestJob;
36 using net::URLRequestStatus; 36 using net::URLRequestStatus;
37 37
38 namespace storage { 38 namespace storage {
39 39
40 static net::HttpResponseHeaders* CreateHttpResponseHeaders() { 40 static net::HttpResponseHeaders* CreateHttpResponseHeaders() {
41 // HttpResponseHeaders expects its input string to be terminated by two NULs. 41 // HttpResponseHeaders expects its input string to be terminated by two NULs.
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 } 254 }
255 255
256 return false; 256 return false;
257 } 257 }
258 258
259 void FileSystemURLRequestJob::NotifyFailed(int rv) { 259 void FileSystemURLRequestJob::NotifyFailed(int rv) {
260 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED, rv)); 260 NotifyDone(URLRequestStatus(URLRequestStatus::FAILED, rv));
261 } 261 }
262 262
263 } // namespace storage 263 } // namespace storage
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698