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

Side by Side Diff: third_party/WebKit/public/web/modules/serviceworker/WebServiceWorkerContextProxy.h

Issue 2620463002: Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: fix crash 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 | « third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 28 matching lines...) Expand all
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class WebDataConsumerHandle; 42 class WebDataConsumerHandle;
43 class WebServiceWorkerRequest; 43 class WebServiceWorkerRequest;
44 class WebString; 44 class WebString;
45 struct WebNotificationData; 45 struct WebNotificationData;
46 struct WebPaymentAppRequestData; 46 struct WebPaymentAppRequestData;
47 struct WebServiceWorkerClientInfo; 47 struct WebServiceWorkerClientInfo;
48 struct WebServiceWorkerError; 48 struct WebServiceWorkerError;
49 class WebURL;
49 class WebURLResponse; 50 class WebURLResponse;
50 51
51 // A proxy interface to talk to the worker's GlobalScope implementation. 52 // A proxy interface to talk to the worker's GlobalScope implementation.
52 // All methods of this class must be called on the worker thread. 53 // All methods of this class must be called on the worker thread.
53 class WebServiceWorkerContextProxy { 54 class WebServiceWorkerContextProxy {
54 public: 55 public:
55 virtual ~WebServiceWorkerContextProxy() {} 56 virtual ~WebServiceWorkerContextProxy() {}
56 57
57 virtual void setRegistration( 58 virtual void setRegistration(
58 std::unique_ptr<WebServiceWorkerRegistration::Handle>) = 0; 59 std::unique_ptr<WebServiceWorkerRegistration::Handle>) = 0;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 94
94 // Once the ServiceWorker has finished handling the sync event, 95 // Once the ServiceWorker has finished handling the sync event,
95 // didHandleSyncEvent is called on the context client. 96 // didHandleSyncEvent is called on the context client.
96 virtual void dispatchSyncEvent(int syncEventID, 97 virtual void dispatchSyncEvent(int syncEventID,
97 const WebString& tag, 98 const WebString& tag,
98 LastChanceOption) = 0; 99 LastChanceOption) = 0;
99 100
100 virtual void dispatchPaymentRequestEvent(int eventID, 101 virtual void dispatchPaymentRequestEvent(int eventID,
101 const WebPaymentAppRequestData&) = 0; 102 const WebPaymentAppRequestData&) = 0;
102 103
104 // Called when the ServiceWorker received a FetchEvent which has triggered a
105 // navigation preload request.
106 virtual void onNavigationPreloadSent(int fetchEventID, const WebURL&) = 0;
103 virtual void onNavigationPreloadResponse( 107 virtual void onNavigationPreloadResponse(
104 int fetchEventID, 108 int fetchEventID,
105 std::unique_ptr<WebURLResponse>, 109 std::unique_ptr<WebURLResponse>,
106 std::unique_ptr<WebDataConsumerHandle>) = 0; 110 std::unique_ptr<WebDataConsumerHandle>) = 0;
107 virtual void onNavigationPreloadError( 111 virtual void onNavigationPreloadError(
108 int fetchEventID, 112 int fetchEventID,
109 std::unique_ptr<WebServiceWorkerError>) = 0; 113 std::unique_ptr<WebServiceWorkerError>) = 0;
114 virtual void onNavigationPreloadCompleted(int fetchEventID,
115 int64_t encodedDataLength) = 0;
110 }; 116 };
111 117
112 } // namespace blink 118 } // namespace blink
113 119
114 #endif // WebServiceWorkerContextProxy_h 120 #endif // WebServiceWorkerContextProxy_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebSharedWorkerImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698