| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 // All methods other than its ctor/dtor are called on the worker thread. | 50 // All methods other than its ctor/dtor are called on the worker thread. |
| 51 // | 51 // |
| 52 // This implements WebServiceWorkerContextProxy, which connects ServiceWorker's | 52 // This implements WebServiceWorkerContextProxy, which connects ServiceWorker's |
| 53 // WorkerGlobalScope and embedder/chrome, and implements ServiceWorker-specific | 53 // WorkerGlobalScope and embedder/chrome, and implements ServiceWorker-specific |
| 54 // events/upcall methods that are to be called by embedder/chromium, | 54 // events/upcall methods that are to be called by embedder/chromium, |
| 55 // e.g. onfetch. | 55 // e.g. onfetch. |
| 56 // | 56 // |
| 57 // An instance of this class is supposed to outlive until | 57 // An instance of this class is supposed to outlive until |
| 58 // workerGlobalScopeDestroyed() is called by its corresponding | 58 // workerGlobalScopeDestroyed() is called by its corresponding |
| 59 // WorkerGlobalScope. | 59 // WorkerGlobalScope. |
| 60 class ServiceWorkerGlobalScopeProxy : | 60 class ServiceWorkerGlobalScopeProxy FINAL : |
| 61 public WebServiceWorkerContextProxy, | 61 public WebServiceWorkerContextProxy, |
| 62 public WebCore::WorkerReportingProxy { | 62 public WebCore::WorkerReportingProxy { |
| 63 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); | 63 WTF_MAKE_NONCOPYABLE(ServiceWorkerGlobalScopeProxy); |
| 64 public: | 64 public: |
| 65 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp
l&, WebCore::ExecutionContext&, PassOwnPtr<WebServiceWorkerContextClient>); | 65 static PassOwnPtr<ServiceWorkerGlobalScopeProxy> create(WebEmbeddedWorkerImp
l&, WebCore::ExecutionContext&, PassOwnPtr<WebServiceWorkerContextClient>); |
| 66 virtual ~ServiceWorkerGlobalScopeProxy(); | 66 virtual ~ServiceWorkerGlobalScopeProxy(); |
| 67 | 67 |
| 68 // WorkerReportingProxy overrides: | 68 // WorkerReportingProxy overrides: |
| 69 virtual void reportException(const String& errorMessage, int lineNumber, int
columnNumber, const String& sourceURL) OVERRIDE; | 69 virtual void reportException(const String& errorMessage, int lineNumber, int
columnNumber, const String& sourceURL) OVERRIDE; |
| 70 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe
vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE; | 70 virtual void reportConsoleMessage(WebCore::MessageSource, WebCore::MessageLe
vel, const String& message, int lineNumber, const String& sourceURL) OVERRIDE; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 81 WebCore::ExecutionContext& m_executionContext; | 81 WebCore::ExecutionContext& m_executionContext; |
| 82 | 82 |
| 83 OwnPtr<WebServiceWorkerContextClient> m_client; | 83 OwnPtr<WebServiceWorkerContextClient> m_client; |
| 84 | 84 |
| 85 WebCore::WorkerGlobalScope* m_workerGlobalScope; | 85 WebCore::WorkerGlobalScope* m_workerGlobalScope; |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 } // namespace blink | 88 } // namespace blink |
| 89 | 89 |
| 90 #endif // ServiceWorkerGlobalScopeProxy_h | 90 #endif // ServiceWorkerGlobalScopeProxy_h |
| OLD | NEW |