| Index: public/web/WebSharedWorkerClient.h
|
| diff --git a/public/web/WebSharedWorkerClient.h b/public/web/WebSharedWorkerClient.h
|
| index 2b661071ea2d188e1bb730acce109e6a58bb8107..e79c1fc37961d0b111e846f9e7a6e7d74551a14a 100644
|
| --- a/public/web/WebSharedWorkerClient.h
|
| +++ b/public/web/WebSharedWorkerClient.h
|
| @@ -32,7 +32,6 @@
|
| #define WebSharedWorkerClient_h
|
|
|
| #include "public/platform/WebMessagePortChannel.h"
|
| -#include "public/web/WebWorkerPermissionClientProxy.h"
|
|
|
| namespace blink {
|
|
|
| @@ -70,12 +69,7 @@ public:
|
| // WebWorkerContentSettingsClientProxy should not retain the given
|
| // WebSecurityOrigin, as the proxy instance is passed to worker thread
|
| // while WebSecurityOrigin is not thread safe.
|
| - virtual WebWorkerContentSettingsClientProxy* createWorkerContentSettingsClientProxy(const WebSecurityOrigin& origin)
|
| - {
|
| - return createWorkerPermissionClientProxy(origin);
|
| - }
|
| - // Deprecated call required by embedder.
|
| - virtual WebWorkerPermissionClientProxy* createWorkerPermissionClientProxy(const WebSecurityOrigin&) { return nullptr; }
|
| + virtual WebWorkerContentSettingsClientProxy* createWorkerContentSettingsClientProxy(const WebSecurityOrigin& origin) { return nullptr; }
|
|
|
| // Called on the main thread during initialization.
|
| // Ownership of the returned object is transferred to the caller.
|
|
|