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

Side by Side Diff: components/proximity_auth/unlock_manager.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more 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 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 #ifndef COMPONENTS_PROXIMITY_AUTH_UNLOCK_MANAGER_H 5 #ifndef COMPONENTS_PROXIMITY_AUTH_UNLOCK_MANAGER_H
6 #define COMPONENTS_PROXIMITY_AUTH_UNLOCK_MANAGER_H 6 #define COMPONENTS_PROXIMITY_AUTH_UNLOCK_MANAGER_H
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
11 #include "build/build_config.h"
11 #include "components/proximity_auth/messenger_observer.h" 12 #include "components/proximity_auth/messenger_observer.h"
12 #include "components/proximity_auth/proximity_auth_system.h" 13 #include "components/proximity_auth/proximity_auth_system.h"
13 #include "components/proximity_auth/remote_device_life_cycle.h" 14 #include "components/proximity_auth/remote_device_life_cycle.h"
14 #include "components/proximity_auth/remote_status_update.h" 15 #include "components/proximity_auth/remote_status_update.h"
15 #include "components/proximity_auth/screenlock_bridge.h" 16 #include "components/proximity_auth/screenlock_bridge.h"
16 #include "components/proximity_auth/screenlock_state.h" 17 #include "components/proximity_auth/screenlock_state.h"
17 #include "device/bluetooth/bluetooth_adapter.h" 18 #include "device/bluetooth/bluetooth_adapter.h"
18 19
19 #if defined(OS_CHROMEOS) 20 #if defined(OS_CHROMEOS)
20 #include "chromeos/dbus/power_manager_client.h" 21 #include "chromeos/dbus/power_manager_client.h"
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 190
190 // Used to vend all other weak pointers. 191 // Used to vend all other weak pointers.
191 base::WeakPtrFactory<UnlockManager> weak_ptr_factory_; 192 base::WeakPtrFactory<UnlockManager> weak_ptr_factory_;
192 193
193 DISALLOW_COPY_AND_ASSIGN(UnlockManager); 194 DISALLOW_COPY_AND_ASSIGN(UnlockManager);
194 }; 195 };
195 196
196 } // namespace proximity_auth 197 } // namespace proximity_auth
197 198
198 #endif // COMPONENTS_PROXIMITY_AUTH_UNLOCK_MANAGER_H 199 #endif // COMPONENTS_PROXIMITY_AUTH_UNLOCK_MANAGER_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698