| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 #include "platform/network/ResourceResponse.h" | 57 #include "platform/network/ResourceResponse.h" |
| 58 #include "platform/weborigin/KURL.h" | 58 #include "platform/weborigin/KURL.h" |
| 59 #include "platform/weborigin/SecurityOrigin.h" | 59 #include "platform/weborigin/SecurityOrigin.h" |
| 60 #include "public/platform/WebFileError.h" | 60 #include "public/platform/WebFileError.h" |
| 61 #include "public/platform/WebMessagePortChannel.h" | 61 #include "public/platform/WebMessagePortChannel.h" |
| 62 #include "public/platform/WebString.h" | 62 #include "public/platform/WebString.h" |
| 63 #include "public/platform/WebURL.h" | 63 #include "public/platform/WebURL.h" |
| 64 #include "public/platform/WebURLRequest.h" | 64 #include "public/platform/WebURLRequest.h" |
| 65 #include "public/web/WebDevToolsAgent.h" | 65 #include "public/web/WebDevToolsAgent.h" |
| 66 #include "public/web/WebFrame.h" | 66 #include "public/web/WebFrame.h" |
| 67 #include "public/web/WebServiceWorkerNetworkProvider.h" | |
| 68 #include "public/web/WebSettings.h" | 67 #include "public/web/WebSettings.h" |
| 69 #include "public/web/WebView.h" | 68 #include "public/web/WebView.h" |
| 70 #include "public/web/WebWorkerContentSettingsClientProxy.h" | 69 #include "public/web/WebWorkerContentSettingsClientProxy.h" |
| 70 #include "public/web/modules/serviceworker/WebServiceWorkerNetworkProvider.h" |
| 71 #include "web/LocalFileSystemClient.h" | 71 #include "web/LocalFileSystemClient.h" |
| 72 #include "web/WebDataSourceImpl.h" | 72 #include "web/WebDataSourceImpl.h" |
| 73 #include "web/WebLocalFrameImpl.h" | 73 #include "web/WebLocalFrameImpl.h" |
| 74 #include "web/WorkerContentSettingsClient.h" | 74 #include "web/WorkerContentSettingsClient.h" |
| 75 #include "wtf/Functional.h" | 75 #include "wtf/Functional.h" |
| 76 #include "wtf/MainThread.h" | 76 #include "wtf/MainThread.h" |
| 77 | 77 |
| 78 namespace blink { | 78 namespace blink { |
| 79 | 79 |
| 80 // TODO(toyoshim): Share implementation with WebEmbeddedWorkerImpl as much as | 80 // TODO(toyoshim): Share implementation with WebEmbeddedWorkerImpl as much as |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 if (devtoolsAgent) | 394 if (devtoolsAgent) |
| 395 devtoolsAgent->dispatchOnInspectorBackend(message); | 395 devtoolsAgent->dispatchOnInspectorBackend(message); |
| 396 } | 396 } |
| 397 | 397 |
| 398 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) | 398 WebSharedWorker* WebSharedWorker::create(WebSharedWorkerClient* client) |
| 399 { | 399 { |
| 400 return new WebSharedWorkerImpl(client); | 400 return new WebSharedWorkerImpl(client); |
| 401 } | 401 } |
| 402 | 402 |
| 403 } // namespace blink | 403 } // namespace blink |
| OLD | NEW |