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

Unified Diff: Source/modules/serviceworkers/Client.h

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
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/serviceworkers/Client.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/Client.h
diff --git a/Source/modules/serviceworkers/Client.h b/Source/modules/serviceworkers/Client.h
deleted file mode 100644
index 6c986241b48816874d6746b5fdbdd4af46850078..0000000000000000000000000000000000000000
--- a/Source/modules/serviceworkers/Client.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef Client_h
-#define Client_h
-
-#include "bindings/core/v8/ScriptWrappable.h"
-#include "bindings/core/v8/SerializedScriptValue.h"
-#include "platform/heap/Handle.h"
-#include "wtf/Forward.h"
-
-namespace blink {
-
-class Client FINAL : public RefCountedWillBeGarbageCollected<Client>, public ScriptWrappable {
- DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Client);
-public:
- static PassRefPtrWillBeRawPtr<Client> create(unsigned id);
-
- // Client.idl
- unsigned id() const { return m_id; }
- void postMessage(ExecutionContext*, PassRefPtr<SerializedScriptValue> message, const MessagePortArray*, ExceptionState&);
-
- void trace(Visitor*) { }
-
-private:
- explicit Client(unsigned id);
-
- unsigned m_id;
-};
-
-} // namespace blink
-
-#endif // Client_h
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/serviceworkers/Client.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698