 Chromium Code Reviews
 Chromium Code Reviews Issue 1701313002:
  Partial implementation of subscription restrictions.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1701313002:
  Partial implementation of subscription restrictions.  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: third_party/WebKit/public/platform/modules/push_messaging/WebPushSubscriptionOptions.h | 
| diff --git a/third_party/WebKit/public/platform/modules/push_messaging/WebPushSubscriptionOptions.h b/third_party/WebKit/public/platform/modules/push_messaging/WebPushSubscriptionOptions.h | 
| index bfac23a214aab86e30aae83e43ca5aa9323d596d..834af5654652b45a8cdce08394168f9d5873df88 100644 | 
| --- a/third_party/WebKit/public/platform/modules/push_messaging/WebPushSubscriptionOptions.h | 
| +++ b/third_party/WebKit/public/platform/modules/push_messaging/WebPushSubscriptionOptions.h | 
| @@ -5,6 +5,8 @@ | 
| #ifndef WebPushSubscriptionOptions_h | 
| #define WebPushSubscriptionOptions_h | 
| +#include "public/platform/WebString.h" | 
| + | 
| namespace blink { | 
| struct WebPushSubscriptionOptions { | 
| @@ -16,6 +18,10 @@ struct WebPushSubscriptionOptions { | 
| // Indicates that the subscription will only be used for push messages | 
| // that result in UI visible to the user. | 
| bool userVisibleOnly; | 
| + | 
| + // Public key of the app server that can send push messages to this | 
| + // subscription. | 
| 
Peter Beverloo
2016/02/17 16:15:36
Since it expects a specific format (uncompressed E
 
harkness
2016/02/18 10:45:15
Done.
 | 
| + WebString applicationServerKey; | 
| }; | 
| } // namespace blink |