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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 // All methods other than its ctor/dtor are called on the worker thread. | 52 // All methods other than its ctor/dtor are called on the worker thread. |
53 // | 53 // |
54 // This implements WebServiceWorkerContextProxy, which connects ServiceWorker's | 54 // This implements WebServiceWorkerContextProxy, which connects ServiceWorker's |
55 // WorkerGlobalScope and embedder/chrome, and implements ServiceWorker-specific | 55 // WorkerGlobalScope and embedder/chrome, and implements ServiceWorker-specific |
56 // events/upcall methods that are to be called by embedder/chromium, | 56 // events/upcall methods that are to be called by embedder/chromium, |
57 // e.g. onfetch. | 57 // e.g. onfetch. |
58 // | 58 // |
59 // An instance of this class is supposed to outlive until | 59 // An instance of this class is supposed to outlive until |
60 // workerGlobalScopeDestroyed() is called by its corresponding | 60 // workerGlobalScopeDestroyed() is called by its corresponding |
61 // WorkerGlobalScope. | 61 // WorkerGlobalScope. |
62 class ServiceWorkerGlobalScopeProxy FINAL : | 62 class ServiceWorkerGlobalScopeProxy FINAL |
63 public WebServiceWorkerContextProxy, | 63 : public WebServiceWorkerContextProxy |
64 public blink::WorkerReportingProxy { | 64 , public blink::WorkerReportingProxy { |
65 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); | 65 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); |
66 public: | 66 public: |
67 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp
l&, blink::ExecutionContext&, WebServiceWorkerContextClient&); | 67 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp
l&, blink::ExecutionContext&, WebServiceWorkerContextClient&); |
68 virtual ~ServiceWorkerGlobalScopeProxy(); | 68 virtual ~ServiceWorkerGlobalScopeProxy(); |
69 | 69 |
70 // WebServiceWorkerContextProxy overrides: | 70 // WebServiceWorkerContextProxy overrides: |
71 virtual void dispatchActivateEvent(int) OVERRIDE; | 71 virtual void dispatchActivateEvent(int) OVERRIDE; |
72 virtual void dispatchInstallEvent(int) OVERRIDE; | 72 virtual void dispatchInstallEvent(int) OVERRIDE; |
73 virtual void dispatchFetchEvent(int, const WebServiceWorkerRequest&) OVERRID
E; | 73 virtual void dispatchFetchEvent(int, const WebServiceWorkerRequest&) OVERRID
E; |
74 virtual void dispatchMessageEvent(const WebString& message, const WebMessage
PortChannelArray&) OVERRIDE; | 74 virtual void dispatchMessageEvent(const WebString& message, const WebMessage
PortChannelArray&) OVERRIDE; |
(...skipping 17 matching lines...) Expand all Loading... |
92 blink::ExecutionContext& m_executionContext; | 92 blink::ExecutionContext& m_executionContext; |
93 | 93 |
94 WebServiceWorkerContextClient& m_client; | 94 WebServiceWorkerContextClient& m_client; |
95 | 95 |
96 blink::WorkerGlobalScope* m_workerGlobalScope; | 96 blink::WorkerGlobalScope* m_workerGlobalScope; |
97 }; | 97 }; |
98 | 98 |
99 } // namespace blink | 99 } // namespace blink |
100 | 100 |
101 #endif // ServiceWorkerGlobalScopeProxy_h | 101 #endif // ServiceWorkerGlobalScopeProxy_h |
OLD | NEW |