| Index: Source/modules/serviceworkers/ServiceWorkerClient.cpp
|
| diff --git a/Source/modules/serviceworkers/Client.cpp b/Source/modules/serviceworkers/ServiceWorkerClient.cpp
|
| similarity index 68%
|
| rename from Source/modules/serviceworkers/Client.cpp
|
| rename to Source/modules/serviceworkers/ServiceWorkerClient.cpp
|
| index e837a9674f3d02668ae287bda59991ec1aba9d90..044ca3e44f49e78a32bdf1ffb7ea1f58c4c3985b 100644
|
| --- a/Source/modules/serviceworkers/Client.cpp
|
| +++ b/Source/modules/serviceworkers/ServiceWorkerClient.cpp
|
| @@ -3,7 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "config.h"
|
| -#include "modules/serviceworkers/Client.h"
|
| +#include "modules/serviceworkers/ServiceWorkerClient.h"
|
|
|
| #include "bindings/core/v8/ExceptionState.h"
|
| #include "bindings/core/v8/SerializedScriptValue.h"
|
| @@ -13,20 +13,20 @@
|
|
|
| namespace blink {
|
|
|
| -PassRefPtrWillBeRawPtr<Client> Client::create(unsigned id)
|
| +PassRefPtrWillBeRawPtr<ServiceWorkerClient> ServiceWorkerClient::create(unsigned id)
|
| {
|
| - return adoptRefWillBeNoop(new Client(id));
|
| + return adoptRefWillBeNoop(new ServiceWorkerClient(id));
|
| }
|
|
|
| -Client::Client(unsigned id)
|
| +ServiceWorkerClient::ServiceWorkerClient(unsigned id)
|
| : m_id(id)
|
| {
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Client);
|
| +DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(ServiceWorkerClient);
|
|
|
| -void Client::postMessage(ExecutionContext* context, PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& exceptionState)
|
| +void ServiceWorkerClient::postMessage(ExecutionContext* context, PassRefPtr<SerializedScriptValue> message, const MessagePortArray* ports, ExceptionState& exceptionState)
|
| {
|
| // Disentangle the port in preparation for sending it to the remote context.
|
| OwnPtr<MessagePortChannelArray> channels = MessagePort::disentanglePorts(ports, exceptionState);
|
|
|