| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 29 matching lines...) Expand all Loading... |
| 40 #include "platform/wtf/PtrUtil.h" | 40 #include "platform/wtf/PtrUtil.h" |
| 41 #include "public/platform/Platform.h" | 41 #include "public/platform/Platform.h" |
| 42 #include "public/platform/WebContentSettingsClient.h" | 42 #include "public/platform/WebContentSettingsClient.h" |
| 43 #include "public/platform/WebString.h" | 43 #include "public/platform/WebString.h" |
| 44 #include "public/platform/WebWorkerFetchContext.h" | 44 #include "public/platform/WebWorkerFetchContext.h" |
| 45 #include "public/web/WebFrameClient.h" | 45 #include "public/web/WebFrameClient.h" |
| 46 #include "public/web/WebWorkerContentSettingsClientProxy.h" | 46 #include "public/web/WebWorkerContentSettingsClientProxy.h" |
| 47 #include "web/IndexedDBClientImpl.h" | 47 #include "web/IndexedDBClientImpl.h" |
| 48 #include "web/LocalFileSystemClient.h" | 48 #include "web/LocalFileSystemClient.h" |
| 49 #include "web/WebLocalFrameImpl.h" | 49 #include "web/WebLocalFrameImpl.h" |
| 50 #include "web/WebViewImpl.h" | |
| 51 | 50 |
| 52 namespace blink { | 51 namespace blink { |
| 53 | 52 |
| 54 DedicatedWorkerMessagingProxyProviderImpl:: | 53 DedicatedWorkerMessagingProxyProviderImpl:: |
| 55 DedicatedWorkerMessagingProxyProviderImpl(Page& page) | 54 DedicatedWorkerMessagingProxyProviderImpl(Page& page) |
| 56 : DedicatedWorkerMessagingProxyProvider(page) {} | 55 : DedicatedWorkerMessagingProxyProvider(page) {} |
| 57 | 56 |
| 58 InProcessWorkerMessagingProxy* | 57 InProcessWorkerMessagingProxy* |
| 59 DedicatedWorkerMessagingProxyProviderImpl::CreateWorkerMessagingProxy( | 58 DedicatedWorkerMessagingProxyProviderImpl::CreateWorkerMessagingProxy( |
| 60 Worker* worker) { | 59 Worker* worker) { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 82 } | 81 } |
| 83 // FIXME: call provideServiceWorkerContainerClientToWorker here when we | 82 // FIXME: call provideServiceWorkerContainerClientToWorker here when we |
| 84 // support ServiceWorker in dedicated workers (http://crbug.com/371690) | 83 // support ServiceWorker in dedicated workers (http://crbug.com/371690) |
| 85 return new DedicatedWorkerMessagingProxy(worker, worker_clients); | 84 return new DedicatedWorkerMessagingProxy(worker, worker_clients); |
| 86 } | 85 } |
| 87 NOTREACHED(); | 86 NOTREACHED(); |
| 88 return 0; | 87 return 0; |
| 89 } | 88 } |
| 90 | 89 |
| 91 } // namespace blink | 90 } // namespace blink |
| OLD | NEW |