Chromium Code Reviews| Index: public/platform/WebServiceWorkerRegistration.h |
| diff --git a/public/platform/WebServiceWorkerRegistration.h b/public/platform/WebServiceWorkerRegistration.h |
| index f7d0d3e96cc14af54be35e6c9ef681ae73cee0ae..836dcbd21228f4e7540124219a0e8f40f034b5d8 100644 |
| --- a/public/platform/WebServiceWorkerRegistration.h |
| +++ b/public/platform/WebServiceWorkerRegistration.h |
| @@ -9,6 +9,7 @@ |
| namespace blink { |
| +class WebServiceWorkerProvider; |
| class WebServiceWorkerRegistrationProxy; |
| class WebServiceWorkerRegistration { |
| @@ -20,6 +21,7 @@ public: |
| virtual void proxyStopped() { } |
| virtual WebURL scope() const { return WebURL(); } |
| + virtual void update(WebServiceWorkerProvider*) const { } |
|
kinuko
2015/06/11 03:49:52
It's probably not necessary to make this method co
nhiroki
2015/06/11 04:43:26
I see. Removed!
|
| }; |
| } // namespace blink |