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

Unified Diff: Source/platform/exported/WebPushSubscription.cpp

Issue 1148763005: Remove support for PushSubscription.subscriptionId. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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/platform/blink_platform.gypi ('k') | public/platform/modules/push_messaging/WebPushSubscription.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/exported/WebPushSubscription.cpp
diff --git a/Source/platform/exported/WebPushSubscription.cpp b/Source/platform/exported/WebPushSubscription.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..49c7466b16a9af36008a9de2287bd5cf5eb6c70e
--- /dev/null
+++ b/Source/platform/exported/WebPushSubscription.cpp
@@ -0,0 +1,22 @@
+// Copyright 2015 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.
+
+#include "config.h"
+#include "public/platform/modules/push_messaging/WebPushSubscription.h"
+
+#include "platform/weborigin/KURL.h"
+#include "wtf/text/WTFString.h"
+
+namespace blink {
+
+WebPushSubscription::WebPushSubscription(const WebString& endpointWithoutSubscriptionId, const WebString& subscriptionId)
+{
+ String concatenatedEndpoint = endpointWithoutSubscriptionId;
+ concatenatedEndpoint.append("/");
+ concatenatedEndpoint.append(subscriptionId);
+
+ endpoint = KURL(ParsedURLString, concatenatedEndpoint);
+}
+
+} // namespace blink
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | public/platform/modules/push_messaging/WebPushSubscription.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698