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

Side by Side Diff: ios/web/webui/url_data_manager_ios_backend.mm

Issue 2605913002: Fix include import in ios/web (Closed)
Patch Set: add missing #import Created 3 years, 11 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
« no previous file with comments | « ios/web/webui/shared_resources_data_source_ios.mm ('k') | ios/web/webui/url_data_source_ios.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "ios/web/webui/url_data_manager_ios_backend.h" 5 #include "ios/web/webui/url_data_manager_ios_backend.h"
6 6
7 #include <set> 7 #include <set>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/debug/alias.h" 12 #include "base/debug/alias.h"
13 #include "base/lazy_instance.h" 13 #include "base/lazy_instance.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "base/memory/ptr_util.h" 15 #include "base/memory/ptr_util.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/ref_counted_memory.h" 17 #include "base/memory/ref_counted_memory.h"
18 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
19 #include "base/message_loop/message_loop.h" 19 #include "base/message_loop/message_loop.h"
20 #include "base/single_thread_task_runner.h" 20 #include "base/single_thread_task_runner.h"
21 #include "base/strings/string_util.h" 21 #include "base/strings/string_util.h"
22 #include "base/strings/stringprintf.h" 22 #include "base/strings/stringprintf.h"
23 #include "base/trace_event/trace_event.h" 23 #include "base/trace_event/trace_event.h"
24 #include "ios/web/public/browser_state.h" 24 #include "ios/web/public/browser_state.h"
25 #include "ios/web/public/web_client.h" 25 #import "ios/web/public/web_client.h"
26 #include "ios/web/public/web_thread.h" 26 #include "ios/web/public/web_thread.h"
27 #include "ios/web/webui/shared_resources_data_source_ios.h" 27 #include "ios/web/webui/shared_resources_data_source_ios.h"
28 #include "ios/web/webui/url_data_source_ios_impl.h" 28 #include "ios/web/webui/url_data_source_ios_impl.h"
29 #include "net/base/io_buffer.h" 29 #include "net/base/io_buffer.h"
30 #include "net/base/net_errors.h" 30 #include "net/base/net_errors.h"
31 #include "net/http/http_response_headers.h" 31 #include "net/http/http_response_headers.h"
32 #include "net/http/http_status_code.h" 32 #include "net/http/http_status_code.h"
33 #include "net/url_request/url_request.h" 33 #include "net/url_request/url_request.h"
34 #include "net/url_request/url_request_context.h" 34 #include "net/url_request/url_request_context.h"
35 #include "net/url_request/url_request_job.h" 35 #include "net/url_request/url_request_job.h"
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 // Forward this data on to the pending net::URLRequest, if it exists. 521 // Forward this data on to the pending net::URLRequest, if it exists.
522 PendingRequestMap::iterator i = pending_requests_.find(request_id); 522 PendingRequestMap::iterator i = pending_requests_.find(request_id);
523 if (i != pending_requests_.end()) { 523 if (i != pending_requests_.end()) {
524 URLRequestChromeJob* job(i->second); 524 URLRequestChromeJob* job(i->second);
525 pending_requests_.erase(i); 525 pending_requests_.erase(i);
526 job->DataAvailable(bytes); 526 job->DataAvailable(bytes);
527 } 527 }
528 } 528 }
529 529
530 } // namespace web 530 } // namespace web
OLDNEW
« no previous file with comments | « ios/web/webui/shared_resources_data_source_ios.mm ('k') | ios/web/webui/url_data_source_ios.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698