| OLD | NEW |
| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 // Ownership of the returned object is transferred to the caller. | 146 // Ownership of the returned object is transferred to the caller. |
| 147 // This is called on the main thread. | 147 // This is called on the main thread. |
| 148 virtual WebServiceWorkerNetworkProvider* createServiceWorkerNetworkProvider(
WebDataSource*) { return nullptr; } | 148 virtual WebServiceWorkerNetworkProvider* createServiceWorkerNetworkProvider(
WebDataSource*) { return nullptr; } |
| 149 | 149 |
| 150 // Ownership of the returned object is transferred to the caller. | 150 // Ownership of the returned object is transferred to the caller. |
| 151 // This is called on the main thread. | 151 // This is called on the main thread. |
| 152 virtual WebServiceWorkerProvider* createServiceWorkerProvider() { return nul
lptr; } | 152 virtual WebServiceWorkerProvider* createServiceWorkerProvider() { return nul
lptr; } |
| 153 | 153 |
| 154 // Ownership of the passed callbacks is transferred to the callee, callee | 154 // Ownership of the passed callbacks is transferred to the callee, callee |
| 155 // should delete the callbacks after calling either onSuccess or onError. | 155 // should delete the callbacks after calling either onSuccess or onError. |
| 156 // WebServiceWorkerClientInfo and WebServiceWorkerError ownerships are |
| 157 // passed to the WebServiceWorkerClientCallbacks implementation. |
| 158 virtual void getClient(const WebString&, WebServiceWorkerClientCallbacks* ca
llbacks) { BLINK_ASSERT_NOT_REACHED(); } |
| 159 |
| 160 // Ownership of the passed callbacks is transferred to the callee, callee |
| 161 // should delete the callbacks after calling either onSuccess or onError. |
| 156 // WebServiceWorkerClientsInfo and WebServiceWorkerError ownerships are | 162 // WebServiceWorkerClientsInfo and WebServiceWorkerError ownerships are |
| 157 // passed to the WebServiceWorkerClientsCallbacks implementation. | 163 // passed to the WebServiceWorkerClientsCallbacks implementation. |
| 158 virtual void getClients(const WebServiceWorkerClientQueryOptions&, WebServic
eWorkerClientsCallbacks* callbacks) { BLINK_ASSERT_NOT_REACHED(); } | 164 virtual void getClients(const WebServiceWorkerClientQueryOptions&, WebServic
eWorkerClientsCallbacks* callbacks) { BLINK_ASSERT_NOT_REACHED(); } |
| 159 | 165 |
| 160 // Ownership of the passed callbacks is transferred to the callee, callee | 166 // Ownership of the passed callbacks is transferred to the callee, callee |
| 161 // should delete the callbacks after calling either onSuccess or onError. | 167 // should delete the callbacks after calling either onSuccess or onError. |
| 162 // WebServiceWorkerClientInfo and WebServiceWorkerError ownerships are | 168 // WebServiceWorkerClientInfo and WebServiceWorkerError ownerships are |
| 163 // passed to the WebServiceWorkerClientsCallbacks implementation. | 169 // passed to the WebServiceWorkerClientsCallbacks implementation. |
| 164 virtual void openWindow(const WebURL& url, WebServiceWorkerClientCallbacks*)
{ BLINK_ASSERT_NOT_REACHED(); } | 170 virtual void openWindow(const WebURL& url, WebServiceWorkerClientCallbacks*)
{ BLINK_ASSERT_NOT_REACHED(); } |
| 165 | 171 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 196 virtual void navigate(const WebString& uuid, const WebURL&, WebServiceWorker
ClientCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } | 202 virtual void navigate(const WebString& uuid, const WebURL&, WebServiceWorker
ClientCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } |
| 197 | 203 |
| 198 // Called when the worker wants to register subscopes to handle via foreign | 204 // Called when the worker wants to register subscopes to handle via foreign |
| 199 // fetch. Will only be called while an install event is in progress. | 205 // fetch. Will only be called while an install event is in progress. |
| 200 virtual void registerForeignFetchScopes(const WebVector<WebURL>& subScopes,
const WebVector<WebSecurityOrigin>& origins) { BLINK_ASSERT_NOT_REACHED(); } | 206 virtual void registerForeignFetchScopes(const WebVector<WebURL>& subScopes,
const WebVector<WebSecurityOrigin>& origins) { BLINK_ASSERT_NOT_REACHED(); } |
| 201 }; | 207 }; |
| 202 | 208 |
| 203 } // namespace blink | 209 } // namespace blink |
| 204 | 210 |
| 205 #endif // WebServiceWorkerContextClient_h | 211 #endif // WebServiceWorkerContextClient_h |
| OLD | NEW |