Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: chrome/browser/push_messaging/push_messaging_notification_manager.cc

Issue 1658793002: Update chrome for new prefs location. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/push_messaging/push_messaging_notification_manager.h" 5 #include "chrome/browser/push_messaging/push_messaging_notification_manager.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <bitset> 9 #include <bitset>
10 10
11 #include "base/metrics/histogram_macros.h" 11 #include "base/metrics/histogram_macros.h"
12 #include "base/prefs/pref_service.h"
13 #include "base/strings/utf_string_conversions.h" 12 #include "base/strings/utf_string_conversions.h"
14 #include "chrome/browser/browser_process.h" 13 #include "chrome/browser/browser_process.h"
15 #include "chrome/browser/notifications/platform_notification_service_impl.h" 14 #include "chrome/browser/notifications/platform_notification_service_impl.h"
16 #include "chrome/browser/profiles/profile.h" 15 #include "chrome/browser/profiles/profile.h"
17 #include "chrome/browser/push_messaging/push_messaging_constants.h" 16 #include "chrome/browser/push_messaging/push_messaging_constants.h"
18 #include "chrome/common/features.h" 17 #include "chrome/common/features.h"
19 #include "chrome/common/pref_names.h" 18 #include "chrome/common/pref_names.h"
20 #include "chrome/grit/generated_resources.h" 19 #include "chrome/grit/generated_resources.h"
20 #include "components/prefs/pref_service.h"
21 #include "components/rappor/rappor_utils.h" 21 #include "components/rappor/rappor_utils.h"
22 #include "components/url_formatter/elide_url.h" 22 #include "components/url_formatter/elide_url.h"
23 #include "content/public/browser/browser_context.h" 23 #include "content/public/browser/browser_context.h"
24 #include "content/public/browser/browser_thread.h" 24 #include "content/public/browser/browser_thread.h"
25 #include "content/public/browser/platform_notification_context.h" 25 #include "content/public/browser/platform_notification_context.h"
26 #include "content/public/browser/push_messaging_service.h" 26 #include "content/public/browser/push_messaging_service.h"
27 #include "content/public/browser/render_frame_host.h" 27 #include "content/public/browser/render_frame_host.h"
28 #include "content/public/browser/storage_partition.h" 28 #include "content/public/browser/storage_partition.h"
29 #include "content/public/browser/web_contents.h" 29 #include "content/public/browser/web_contents.h"
30 #include "content/public/common/notification_resources.h" 30 #include "content/public/common/notification_resources.h"
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 message_handled_closure.Run(); 334 message_handled_closure.Run();
335 return; 335 return;
336 } 336 }
337 337
338 PlatformNotificationServiceImpl::GetInstance()->DisplayPersistentNotification( 338 PlatformNotificationServiceImpl::GetInstance()->DisplayPersistentNotification(
339 profile_, persistent_notification_id, origin, notification_data, 339 profile_, persistent_notification_id, origin, notification_data,
340 NotificationResources()); 340 NotificationResources());
341 341
342 message_handled_closure.Run(); 342 message_handled_closure.Run();
343 } 343 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698