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

Side by Side Diff: ash/system/tray/system_tray_notifier.h

Issue 1540753002: Switch to standard integer types in ash/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: arraysize Created 5 years 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
« no previous file with comments | « ash/system/tray/system_tray_item.h ('k') | ash/system/tray/throbber_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 5 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
7 7
8 #include <stdint.h>
9
8 #include <string> 10 #include <string>
9 #include <vector> 11 #include <vector>
10 12
11 #include "ash/ash_export.h" 13 #include "ash/ash_export.h"
12 #include "ash/system/audio/audio_observer.h" 14 #include "ash/system/audio/audio_observer.h"
13 #include "ash/system/bluetooth/bluetooth_observer.h" 15 #include "ash/system/bluetooth/bluetooth_observer.h"
14 #include "ash/system/chromeos/tray_tracing.h" 16 #include "ash/system/chromeos/tray_tracing.h"
15 #include "ash/system/date/clock_observer.h" 17 #include "ash/system/date/clock_observer.h"
16 #include "ash/system/ime/ime_observer.h" 18 #include "ash/system/ime/ime_observer.h"
17 #include "ash/system/locale/locale_observer.h" 19 #include "ash/system/locale/locale_observer.h"
18 #include "ash/system/tray_accessibility.h" 20 #include "ash/system/tray_accessibility.h"
19 #include "ash/system/user/update_observer.h" 21 #include "ash/system/user/update_observer.h"
20 #include "ash/system/user/user_observer.h" 22 #include "ash/system/user/user_observer.h"
23 #include "base/macros.h"
21 #include "base/observer_list.h" 24 #include "base/observer_list.h"
22 25
23 #if defined(OS_CHROMEOS) 26 #if defined(OS_CHROMEOS)
24 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h" 27 #include "ash/system/chromeos/enterprise/enterprise_domain_observer.h"
25 #include "ash/system/chromeos/network/network_observer.h" 28 #include "ash/system/chromeos/network/network_observer.h"
26 #include "ash/system/chromeos/network/network_portal_detector_observer.h" 29 #include "ash/system/chromeos/network/network_portal_detector_observer.h"
27 #include "ash/system/chromeos/screen_security/screen_capture_observer.h" 30 #include "ash/system/chromeos/screen_security/screen_capture_observer.h"
28 #include "ash/system/chromeos/screen_security/screen_share_observer.h" 31 #include "ash/system/chromeos/screen_security/screen_share_observer.h"
29 #include "ash/system/chromeos/session/last_window_closed_observer.h" 32 #include "ash/system/chromeos/session/last_window_closed_observer.h"
30 #include "ash/system/chromeos/session/logout_button_observer.h" 33 #include "ash/system/chromeos/session/logout_button_observer.h"
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_; 176 base::ObserverList<LastWindowClosedObserver> last_window_closed_observers_;
174 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_; 177 base::ObserverList<VirtualKeyboardObserver> virtual_keyboard_observers_;
175 #endif 178 #endif
176 179
177 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); 180 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier);
178 }; 181 };
179 182
180 } // namespace ash 183 } // namespace ash
181 184
182 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 185 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
OLDNEW
« no previous file with comments | « ash/system/tray/system_tray_item.h ('k') | ash/system/tray/throbber_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698