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/notifications/platform_notification_service_impl.h

Issue 1550593002: Switch to standard integer types in chrome/browser/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_NOTIFICATIONS_PLATFORM_NOTIFICATION_SERVICE_IMPL_H_ 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_PLATFORM_NOTIFICATION_SERVICE_IMPL_H_
6 #define CHROME_BROWSER_NOTIFICATIONS_PLATFORM_NOTIFICATION_SERVICE_IMPL_H_ 6 #define CHROME_BROWSER_NOTIFICATIONS_PLATFORM_NOTIFICATION_SERVICE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 12
13 #include "base/gtest_prod_util.h" 13 #include "base/gtest_prod_util.h"
14 #include "base/macros.h"
14 #include "base/memory/singleton.h" 15 #include "base/memory/singleton.h"
15 #include "base/strings/string16.h" 16 #include "base/strings/string16.h"
16 #include "chrome/browser/notifications/notification.h" 17 #include "chrome/browser/notifications/notification.h"
17 #include "content/public/browser/platform_notification_service.h" 18 #include "content/public/browser/platform_notification_service.h"
18 #include "content/public/common/persistent_notification_status.h" 19 #include "content/public/common/persistent_notification_status.h"
19 20
20 class NotificationDelegate; 21 class NotificationDelegate;
21 class NotificationUIManager; 22 class NotificationUIManager;
22 class Profile; 23 class Profile;
23 24
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 NotificationUIManager* notification_ui_manager_for_tests_; 129 NotificationUIManager* notification_ui_manager_for_tests_;
129 130
130 // Mapping between a persistent notification id and the id of the associated 131 // Mapping between a persistent notification id and the id of the associated
131 // message_center::Notification object. Must only be used on the UI thread. 132 // message_center::Notification object. Must only be used on the UI thread.
132 std::map<int64_t, std::string> persistent_notifications_; 133 std::map<int64_t, std::string> persistent_notifications_;
133 134
134 DISALLOW_COPY_AND_ASSIGN(PlatformNotificationServiceImpl); 135 DISALLOW_COPY_AND_ASSIGN(PlatformNotificationServiceImpl);
135 }; 136 };
136 137
137 #endif // CHROME_BROWSER_NOTIFICATIONS_PLATFORM_NOTIFICATION_SERVICE_IMPL_H_ 138 #endif // CHROME_BROWSER_NOTIFICATIONS_PLATFORM_NOTIFICATION_SERVICE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698