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

Side by Side Diff: content/browser/service_worker/service_worker_url_request_job.cc

Issue 1967823004: Fix include path for moved thread_task_runner_handle.h header in content/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 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 #include "content/browser/service_worker/service_worker_url_request_job.h" 5 #include "content/browser/service_worker/service_worker_url_request_job.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <limits> 10 #include <limits>
11 #include <map> 11 #include <map>
12 #include <memory> 12 #include <memory>
13 #include <string> 13 #include <string>
14 #include <utility> 14 #include <utility>
15 #include <vector> 15 #include <vector>
16 16
17 #include "base/bind.h" 17 #include "base/bind.h"
18 #include "base/guid.h" 18 #include "base/guid.h"
19 #include "base/location.h" 19 #include "base/location.h"
20 #include "base/single_thread_task_runner.h" 20 #include "base/single_thread_task_runner.h"
21 #include "base/strings/stringprintf.h" 21 #include "base/strings/stringprintf.h"
22 #include "base/thread_task_runner_handle.h" 22 #include "base/threading/thread_task_runner_handle.h"
23 #include "base/time/time.h" 23 #include "base/time/time.h"
24 #include "content/browser/resource_context_impl.h" 24 #include "content/browser/resource_context_impl.h"
25 #include "content/browser/service_worker/service_worker_fetch_dispatcher.h" 25 #include "content/browser/service_worker/service_worker_fetch_dispatcher.h"
26 #include "content/browser/service_worker/service_worker_provider_host.h" 26 #include "content/browser/service_worker/service_worker_provider_host.h"
27 #include "content/browser/service_worker/service_worker_response_info.h" 27 #include "content/browser/service_worker/service_worker_response_info.h"
28 #include "content/browser/streams/stream.h" 28 #include "content/browser/streams/stream.h"
29 #include "content/browser/streams/stream_context.h" 29 #include "content/browser/streams/stream_context.h"
30 #include "content/browser/streams/stream_registry.h" 30 #include "content/browser/streams/stream_registry.h"
31 #include "content/common/resource_request_body.h" 31 #include "content/common/resource_request_body.h"
32 #include "content/common/service_worker/service_worker_types.h" 32 #include "content/common/service_worker/service_worker_types.h"
(...skipping 821 matching lines...) Expand 10 before | Expand all | Expand 10 after
854 service_worker_response_type_, worker_start_time_, 854 service_worker_response_type_, worker_start_time_,
855 worker_ready_time_, response_is_in_cache_storage_, 855 worker_ready_time_, response_is_in_cache_storage_,
856 response_cache_storage_cache_name_); 856 response_cache_storage_cache_name_);
857 } 857 }
858 858
859 bool ServiceWorkerURLRequestJob::IsMainResourceLoad() const { 859 bool ServiceWorkerURLRequestJob::IsMainResourceLoad() const {
860 return ServiceWorkerUtils::IsMainResourceType(resource_type_); 860 return ServiceWorkerUtils::IsMainResourceType(resource_type_);
861 } 861 }
862 862
863 } // namespace content 863 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698