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

Side by Side Diff: content/child/service_worker/service_worker_dispatcher.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/child/service_worker/service_worker_dispatcher.h" 5 #include "content/child/service_worker/service_worker_dispatcher.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
11 #include "base/single_thread_task_runner.h" 11 #include "base/single_thread_task_runner.h"
12 #include "base/stl_util.h" 12 #include "base/stl_util.h"
13 #include "base/thread_task_runner_handle.h"
14 #include "base/threading/thread_local.h" 13 #include "base/threading/thread_local.h"
14 #include "base/threading/thread_task_runner_handle.h"
15 #include "base/trace_event/trace_event.h" 15 #include "base/trace_event/trace_event.h"
16 #include "content/child/service_worker/service_worker_handle_reference.h" 16 #include "content/child/service_worker/service_worker_handle_reference.h"
17 #include "content/child/service_worker/service_worker_provider_context.h" 17 #include "content/child/service_worker/service_worker_provider_context.h"
18 #include "content/child/service_worker/service_worker_registration_handle_refere nce.h" 18 #include "content/child/service_worker/service_worker_registration_handle_refere nce.h"
19 #include "content/child/service_worker/web_service_worker_impl.h" 19 #include "content/child/service_worker/web_service_worker_impl.h"
20 #include "content/child/service_worker/web_service_worker_registration_impl.h" 20 #include "content/child/service_worker/web_service_worker_registration_impl.h"
21 #include "content/child/thread_safe_sender.h" 21 #include "content/child/thread_safe_sender.h"
22 #include "content/child/webmessageportchannel_impl.h" 22 #include "content/child/webmessageportchannel_impl.h"
23 #include "content/common/service_worker/service_worker_messages.h" 23 #include "content/common/service_worker/service_worker_messages.h"
24 #include "content/common/service_worker/service_worker_types.h" 24 #include "content/common/service_worker/service_worker_types.h"
(...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 return ServiceWorkerRegistrationHandleReference::Adopt( 774 return ServiceWorkerRegistrationHandleReference::Adopt(
775 info, thread_safe_sender_.get()); 775 info, thread_safe_sender_.get());
776 } 776 }
777 777
778 std::unique_ptr<ServiceWorkerHandleReference> ServiceWorkerDispatcher::Adopt( 778 std::unique_ptr<ServiceWorkerHandleReference> ServiceWorkerDispatcher::Adopt(
779 const ServiceWorkerObjectInfo& info) { 779 const ServiceWorkerObjectInfo& info) {
780 return ServiceWorkerHandleReference::Adopt(info, thread_safe_sender_.get()); 780 return ServiceWorkerHandleReference::Adopt(info, thread_safe_sender_.get());
781 } 781 }
782 782
783 } // namespace content 783 } // namespace content
OLDNEW
« no previous file with comments | « content/child/scoped_child_process_reference.cc ('k') | content/child/service_worker/service_worker_provider_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698