| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 6 #define CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 | 254 |
| 255 // helper methods used by GetSupervisedUserMessage. | 255 // helper methods used by GetSupervisedUserMessage. |
| 256 const base::string16 GetLegacySupervisedUserMessage() const; | 256 const base::string16 GetLegacySupervisedUserMessage() const; |
| 257 const base::string16 GetChildUserMessage() const; | 257 const base::string16 GetChildUserMessage() const; |
| 258 | 258 |
| 259 std::unique_ptr<content::NotificationRegistrar> registrar_; | 259 std::unique_ptr<content::NotificationRegistrar> registrar_; |
| 260 std::unique_ptr<PrefChangeRegistrar> local_state_registrar_; | 260 std::unique_ptr<PrefChangeRegistrar> local_state_registrar_; |
| 261 std::unique_ptr<PrefChangeRegistrar> user_pref_registrar_; | 261 std::unique_ptr<PrefChangeRegistrar> user_pref_registrar_; |
| 262 Profile* user_profile_; | 262 Profile* user_profile_; |
| 263 int search_key_mapped_to_; | 263 int search_key_mapped_to_; |
| 264 bool screen_locked_; | |
| 265 bool have_session_start_time_; | 264 bool have_session_start_time_; |
| 266 base::TimeTicks session_start_time_; | 265 base::TimeTicks session_start_time_; |
| 267 bool have_session_length_limit_; | 266 bool have_session_length_limit_; |
| 268 base::TimeDelta session_length_limit_; | 267 base::TimeDelta session_length_limit_; |
| 269 std::string enterprise_domain_; | 268 std::string enterprise_domain_; |
| 270 bool should_run_bluetooth_discovery_; | 269 bool should_run_bluetooth_discovery_; |
| 271 bool session_started_; | 270 bool session_started_; |
| 272 | 271 |
| 273 scoped_refptr<device::BluetoothAdapter> bluetooth_adapter_; | 272 scoped_refptr<device::BluetoothAdapter> bluetooth_adapter_; |
| 274 std::unique_ptr<device::BluetoothDiscoverySession> | 273 std::unique_ptr<device::BluetoothDiscoverySession> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 287 | 286 |
| 288 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; | 287 base::WeakPtrFactory<SystemTrayDelegateChromeOS> weak_ptr_factory_; |
| 289 | 288 |
| 290 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); | 289 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateChromeOS); |
| 291 }; | 290 }; |
| 292 | 291 |
| 293 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); | 292 ash::SystemTrayDelegate* CreateSystemTrayDelegate(); |
| 294 | 293 |
| 295 } // namespace chromeos | 294 } // namespace chromeos |
| 296 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ | 295 #endif // CHROME_BROWSER_UI_ASH_SYSTEM_TRAY_DELEGATE_CHROMEOS_H_ |
| OLD | NEW |