| Index: third_party/WebKit/Source/modules/push_messaging/PushManager.cpp
|
| diff --git a/third_party/WebKit/Source/modules/push_messaging/PushManager.cpp b/third_party/WebKit/Source/modules/push_messaging/PushManager.cpp
|
| index b7596a28fb0f2849649fc114301231df2c791af2..3409e1a1a809765da1200cb2cf4df3dd7862b125 100644
|
| --- a/third_party/WebKit/Source/modules/push_messaging/PushManager.cpp
|
| +++ b/third_party/WebKit/Source/modules/push_messaging/PushManager.cpp
|
| @@ -42,6 +42,11 @@ PushManager::PushManager(ServiceWorkerRegistration* registration)
|
| DCHECK(registration);
|
| }
|
|
|
| +// static
|
| +Vector<String> PushManager::supportedContentEncodings() {
|
| + return Vector<String>({"aesgcm"});
|
| +}
|
| +
|
| ScriptPromise PushManager::subscribe(ScriptState* script_state,
|
| const PushSubscriptionOptionsInit& options,
|
| ExceptionState& exception_state) {
|
|
|