| Index: chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| diff --git a/chrome/browser/ui/ash/system_tray_delegate_chromeos.h b/chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| index a29dc9e41e570d387e5185d7056f4b438320988e..7342baddfad5b9771c5e92cba9be5e1ddecc17c5 100644
|
| --- a/chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| +++ b/chrome/browser/ui/ash/system_tray_delegate_chromeos.h
|
| @@ -69,6 +69,10 @@ class SystemTrayDelegateChromeOS
|
|
|
| ~SystemTrayDelegateChromeOS() override;
|
|
|
| + // Access a global pointer to the single instance of the
|
| + // SystemTrayDelegateChromeOS class.
|
| + static SystemTrayDelegateChromeOS* Get();
|
| +
|
| void InitializeOnAdapterReady(
|
| scoped_refptr<device::BluetoothAdapter> adapter);
|
|
|
| @@ -123,6 +127,10 @@ class SystemTrayDelegateChromeOS
|
|
|
| void UserChangedChildStatus(user_manager::User* user) override;
|
|
|
| + // This notifies the system that a flash update is now available, and so the
|
| + // user should reboot.
|
| + void SetFlashUpdateAvailable();
|
| +
|
| private:
|
| ash::SystemTrayNotifier* GetSystemTrayNotifier();
|
|
|
| @@ -235,6 +243,7 @@ class SystemTrayDelegateChromeOS
|
| std::string enterprise_realm_;
|
| bool should_run_bluetooth_discovery_ = false;
|
| bool session_started_ = false;
|
| + bool flash_update_available_ = false;
|
|
|
| scoped_refptr<device::BluetoothAdapter> bluetooth_adapter_;
|
| std::unique_ptr<device::BluetoothDiscoverySession>
|
|
|