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

Side by Side Diff: content/common/service_worker/service_worker_fetch_request.typemap

Issue 2762303002: Enable transmitting Fetch Requests over Mojo (Closed)
Patch Set: Enable transmitting Fetch Requests over Mojo Created 3 years, 8 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
(Empty)
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
3 # found in the LICENSE file.
4
5 mojom =
6 "//third_party/WebKit/public/platform/modules/fetch/fetch_api_request.mojom"
7 public_headers = [
8 "//content/common/service_worker/service_worker_types.h",
9 "//content/public/common/request_context_frame_type.h",
10 "//content/public/common/request_context_type.h",
11 ]
12 traits_headers = [ "//content/common/service_worker/service_worker_fetch_request _struct_traits.h" ]
13 sources = [
14 "//content/common/service_worker/service_worker_fetch_request_struct_traits.cc ",
15 ]
16 type_mappings = [
17 "blink.mojom.FetchCredentialsMode=::content::FetchCredentialsMode",
18 "blink.mojom.FetchRedirectMode=::content::FetchRedirectMode",
19 "blink.mojom.FetchRequestMode=::content::FetchRequestMode",
20 "blink.mojom.FetchAPIRequest=::content::ServiceWorkerFetchRequest",
21 "blink.mojom.RequestContextFrameType=::content::RequestContextFrameType",
22 "blink.mojom.RequestContextType=::content::RequestContextType",
23 "blink.mojom.ServiceWorkerFetchType=::content::ServiceWorkerFetchType",
24 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698