diff options
author | peter <peter@chromium.org> | 2015-06-02 08:06:14 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-02 15:06:51 +0000 |
commit | 5531299a236b75e9973239e5785495d2024cb153 (patch) | |
tree | ed29131abc02060bb2f5125e43ea458504b8e6c9 /content/browser | |
parent | ea10511f0619cd9c5889b428c99f939335d742c0 (diff) | |
download | chromium_src-5531299a236b75e9973239e5785495d2024cb153.zip chromium_src-5531299a236b75e9973239e5785495d2024cb153.tar.gz chromium_src-5531299a236b75e9973239e5785495d2024cb153.tar.bz2 |
Remove support for the "gcm_user_visible_only" manifest key.
Per the following Intent to blink-dev, support for this manifest key has
been deprecated per Chrome 44, and will be removed in Chrome 45. We'd like
to do this early in the release cycle, allowing developers to catch on
early when they run the Dev channel.
https://groups.google.com/a/chromium.org/d/topic/blink-dev/6OK5qm491Eg/discussion
A screenshot of the console warning can be seen here:
http://peter.sh/files/devtools-deprecation-message.jpg
BUG=471534
Review URL: https://codereview.chromium.org/1158923002
Cr-Commit-Position: refs/heads/master@{#332386}
Diffstat (limited to 'content/browser')
-rw-r--r-- | content/browser/push_messaging/push_messaging_message_filter.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/content/browser/push_messaging/push_messaging_message_filter.cc b/content/browser/push_messaging/push_messaging_message_filter.cc index e6a869b..836d83f 100644 --- a/content/browser/push_messaging/push_messaging_message_filter.cc +++ b/content/browser/push_messaging/push_messaging_message_filter.cc @@ -217,7 +217,6 @@ void PushMessagingMessageFilter::OnSubscribeFromDocument( int64_t service_worker_registration_id) { DCHECK_CURRENTLY_ON(BrowserThread::IO); // TODO(mvanouwerkerk): Validate arguments? - // TODO(peter): Persist |user_visible| in Service Worker storage. RegisterData data; data.request_id = request_id; data.service_worker_registration_id = service_worker_registration_id; |