Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / public / platform / modules / push_messaging / WebPushSubscriptionOptions.h
blobbfac23a214aab86e30aae83e43ca5aa9323d596d
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef WebPushSubscriptionOptions_h
6 #define WebPushSubscriptionOptions_h
8 namespace blink {
10 struct WebPushSubscriptionOptions {
11 WebPushSubscriptionOptions()
12 : userVisibleOnly(false)
16 // Indicates that the subscription will only be used for push messages
17 // that result in UI visible to the user.
18 bool userVisibleOnly;
21 } // namespace blink
23 #endif // WebPushSubscriptionOptions_h