Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1592)

Unified Diff: Source/modules/serviceworkers/ServiceWorkerClient.cpp

Issue 463423003: ServiceWorker: Rename Client interface to ServiceWorkerClient (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix GN build Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
« no previous file with comments | « Source/modules/serviceworkers/ServiceWorkerClient.h ('k') | Source/modules/serviceworkers/ServiceWorkerClient.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698