blob: a05e30b6b1453256c35c5b1f50ef74b454bf8a6e [file] [log] [blame]
// 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 WebPushSubscription_h
#define WebPushSubscription_h
#include "public/platform/WebCommon.h"
#include "public/platform/WebURL.h"
#include "public/platform/WebVector.h"
#include "public/platform/modules/push_messaging/WebPushSubscriptionOptions.h"
namespace blink {
struct WebPushSubscription {
// The |endpoint|, |p256dh| and |auth| must all be unique for each
// subscription.
WebPushSubscription(const WebURL& endpoint,
bool userVisibleOnly,
const WebString& applicationServerKey,
const WebVector<unsigned char>& p256dh,
const WebVector<unsigned char>& auth)
: endpoint(endpoint), p256dh(p256dh), auth(auth) {
options.userVisibleOnly = userVisibleOnly;
options.applicationServerKey = applicationServerKey;
}
WebURL endpoint;
WebPushSubscriptionOptions options;
WebVector<unsigned char> p256dh;
WebVector<unsigned char> auth;
};
} // namespace blink
#endif // WebPushSubscription_h