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

Side by Side Diff: chrome/browser/notifications/notification_ui_manager.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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_NOTIFICATION_UI_MANAGER_H_ 5 #ifndef CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_H_
6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_H_ 6 #define CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/basictypes.h" 12 #include "base/macros.h"
13 13
14 typedef void* ProfileID; 14 typedef void* ProfileID;
15 15
16 class GURL; 16 class GURL;
17 class Notification; 17 class Notification;
18 class PrefService; 18 class PrefService;
19 class Profile; 19 class Profile;
20 20
21 // This virtual interface is used to manage the UI surfaces for desktop 21 // This virtual interface is used to manage the UI surfaces for desktop
22 // notifications. There is just one instance for all profiles. 22 // notifications. There is just one instance for all profiles.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 virtual void CancelAll() = 0; 90 virtual void CancelAll() = 0;
91 91
92 protected: 92 protected:
93 NotificationUIManager() {} 93 NotificationUIManager() {}
94 94
95 private: 95 private:
96 DISALLOW_COPY_AND_ASSIGN(NotificationUIManager); 96 DISALLOW_COPY_AND_ASSIGN(NotificationUIManager);
97 }; 97 };
98 98
99 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_H_ 99 #endif // CHROME_BROWSER_NOTIFICATIONS_NOTIFICATION_UI_MANAGER_H_
OLDNEW
« no previous file with comments | « chrome/browser/notifications/notification_test_util.h ('k') | chrome/browser/notifications/notification_ui_manager_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698