| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2014 Google Inc. All rights reserved. | 2 * Copyright (C) 2014 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 // made. | 51 // made. |
| 52 virtual void willSendRequest(WebURLRequest&) {} | 52 virtual void willSendRequest(WebURLRequest&) {} |
| 53 | 53 |
| 54 // Whether the document associated with WebDataSource is controlled by the | 54 // Whether the document associated with WebDataSource is controlled by the |
| 55 // ServiceWorker. | 55 // ServiceWorker. |
| 56 virtual bool isControlledByServiceWorker() { return false; } | 56 virtual bool isControlledByServiceWorker() { return false; } |
| 57 | 57 |
| 58 // Returns an identifier of the service worker controlling the document | 58 // Returns an identifier of the service worker controlling the document |
| 59 // associated with the WebDataSource. | 59 // associated with the WebDataSource. |
| 60 virtual int64_t serviceWorkerID() { return -1; } | 60 virtual int64_t serviceWorkerID() { return -1; } |
| 61 |
| 62 virtual int providerID() { |
| 63 NOTIMPLEMENTED(); |
| 64 return -1; |
| 65 } |
| 61 }; | 66 }; |
| 62 | 67 |
| 63 } // namespace blink | 68 } // namespace blink |
| 64 | 69 |
| 65 #endif // WebServiceWorkerNetworkProvider_h | 70 #endif // WebServiceWorkerNetworkProvider_h |
| OLD | NEW |