blob: 18b6ce1e08fd6f7b366ac4b98e8bd0e45c585134 [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 WebPushRegistration_h
#define WebPushRegistration_h
#include "WebString.h"
namespace blink {
struct WebPushRegistration {
WebPushRegistration(const WebString& endpoint, const WebString& registrationId)
: endpoint(endpoint)
, registrationId(registrationId)
{
}
WebString endpoint;
WebString registrationId;
};
} // namespace blink
#endif // WebPushRegistration_h