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

Side by Side Diff: content/renderer/service_worker/worker_fetch_context_impl.h

Issue 2969463003: Move resource_request.h to content/public/common. (Closed)
Patch Set: +Black Magic Created 3 years, 5 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #ifndef CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_ 5 #ifndef CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_
6 #define CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_ 6 #define CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_
7 7
8 #include "content/common/service_worker/service_worker_types.h" 8 #include "content/common/service_worker/service_worker_types.h"
9 #include "content/common/worker_url_loader_factory_provider.mojom.h" 9 #include "content/common/worker_url_loader_factory_provider.mojom.h"
10 #include "content/public/common/service_worker_modes.h"
10 #include "ipc/ipc_message.h" 11 #include "ipc/ipc_message.h"
11 #include "mojo/public/cpp/bindings/associated_binding.h" 12 #include "mojo/public/cpp/bindings/associated_binding.h"
12 #include "third_party/WebKit/public/platform/WebWorkerFetchContext.h" 13 #include "third_party/WebKit/public/platform/WebWorkerFetchContext.h"
13 #include "url/gurl.h" 14 #include "url/gurl.h"
14 15
15 namespace base { 16 namespace base {
16 class SingleThreadTaskRunner; 17 class SingleThreadTaskRunner;
17 } // namespace base 18 } // namespace base
18 19
19 namespace IPC { 20 namespace IPC {
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 scoped_refptr<ThreadSafeSender> thread_safe_sender_; 87 scoped_refptr<ThreadSafeSender> thread_safe_sender_;
87 bool is_data_saver_enabled_ = false; 88 bool is_data_saver_enabled_ = false;
88 int parent_frame_id_ = MSG_ROUTING_NONE; 89 int parent_frame_id_ = MSG_ROUTING_NONE;
89 GURL first_party_for_cookies_; 90 GURL first_party_for_cookies_;
90 bool is_secure_context_ = false; 91 bool is_secure_context_ = false;
91 }; 92 };
92 93
93 } // namespace content 94 } // namespace content
94 95
95 #endif // CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_ 96 #endif // CONTENT_RENDERER_SERVICE_WORKER_WORKER_FETCH_CONTEXT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698