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

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

Issue 2649923007: Revert of Show service worker navigation preload requests in DevTools Network tab (Closed)
Patch Set: Created 3 years, 10 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;
50 class WebURLResponse; 49 class WebURLResponse;
51 50
52 // A proxy interface to talk to the worker's GlobalScope implementation. 51 // A proxy interface to talk to the worker's GlobalScope implementation.
53 // All methods of this class must be called on the worker thread. 52 // All methods of this class must be called on the worker thread.
54 class WebServiceWorkerContextProxy { 53 class WebServiceWorkerContextProxy {
55 public: 54 public:
56 virtual ~WebServiceWorkerContextProxy() {} 55 virtual ~WebServiceWorkerContextProxy() {}
57 56
58 virtual void setRegistration( 57 virtual void setRegistration(
59 std::unique_ptr<WebServiceWorkerRegistration::Handle>) = 0; 58 std::unique_ptr<WebServiceWorkerRegistration::Handle>) = 0;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 93
95 // Once the ServiceWorker has finished handling the sync event, 94 // Once the ServiceWorker has finished handling the sync event,
96 // didHandleSyncEvent is called on the context client. 95 // didHandleSyncEvent is called on the context client.
97 virtual void dispatchSyncEvent(int syncEventID, 96 virtual void dispatchSyncEvent(int syncEventID,
98 const WebString& tag, 97 const WebString& tag,
99 LastChanceOption) = 0; 98 LastChanceOption) = 0;
100 99
101 virtual void dispatchPaymentRequestEvent(int eventID, 100 virtual void dispatchPaymentRequestEvent(int eventID,
102 const WebPaymentAppRequestData&) = 0; 101 const WebPaymentAppRequestData&) = 0;
103 102
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;
107 virtual void onNavigationPreloadResponse( 103 virtual void onNavigationPreloadResponse(
108 int fetchEventID, 104 int fetchEventID,
109 std::unique_ptr<WebURLResponse>, 105 std::unique_ptr<WebURLResponse>,
110 std::unique_ptr<WebDataConsumerHandle>) = 0; 106 std::unique_ptr<WebDataConsumerHandle>) = 0;
111 virtual void onNavigationPreloadError( 107 virtual void onNavigationPreloadError(
112 int fetchEventID, 108 int fetchEventID,
113 std::unique_ptr<WebServiceWorkerError>) = 0; 109 std::unique_ptr<WebServiceWorkerError>) = 0;
114 virtual void onNavigationPreloadCompleted(int fetchEventID,
115 int64_t encodedDataLength) = 0;
116 }; 110 };
117 111
118 } // namespace blink 112 } // namespace blink
119 113
120 #endif // WebServiceWorkerContextProxy_h 114 #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