| OLD | NEW |
| 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_DELEGATE_H_ | 5 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ |
| 6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ | 6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "ash/system/user/login_status.h" | 12 #include "ash/system/user/login_status.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/i18n/time_formatting.h" | 14 #include "base/i18n/time_formatting.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/strings/string16.h" | 16 #include "base/strings/string16.h" |
| 17 #include "ui/gfx/image/image_skia.h" | 17 #include "ui/gfx/image/image_skia.h" |
| 18 #include "ui/gfx/native_widget_types.h" | |
| 19 | 18 |
| 20 namespace base { | 19 namespace base { |
| 21 class TimeDelta; | 20 class TimeDelta; |
| 22 class TimeTicks; | 21 class TimeTicks; |
| 23 } | 22 } |
| 24 | 23 |
| 25 namespace ash { | 24 namespace ash { |
| 26 | 25 |
| 27 struct ASH_EXPORT NetworkIconInfo { | 26 struct ASH_EXPORT NetworkIconInfo { |
| 28 NetworkIconInfo(); | 27 NetworkIconInfo(); |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) = 0; | 227 virtual void GetCurrentIMEProperties(IMEPropertyInfoList* list) = 0; |
| 229 | 228 |
| 230 // Switches to the selected input method. | 229 // Switches to the selected input method. |
| 231 virtual void SwitchIME(const std::string& ime_id) = 0; | 230 virtual void SwitchIME(const std::string& ime_id) = 0; |
| 232 | 231 |
| 233 // Activates an IME property. | 232 // Activates an IME property. |
| 234 virtual void ActivateIMEProperty(const std::string& key) = 0; | 233 virtual void ActivateIMEProperty(const std::string& key) = 0; |
| 235 | 234 |
| 236 // Shows UI to configure or activate the network specified by |network_id|, | 235 // Shows UI to configure or activate the network specified by |network_id|, |
| 237 // which may include showing Payment or Portal UI when appropriate. | 236 // which may include showing Payment or Portal UI when appropriate. |
| 238 // |parent_window| is used to parent any configuration UI. If NULL a default | 237 virtual void ShowNetworkConfigure(const std::string& network_id) = 0; |
| 239 // window will be used. | |
| 240 virtual void ShowNetworkConfigure(const std::string& network_id, | |
| 241 gfx::NativeWindow parent_window) = 0; | |
| 242 | 238 |
| 243 // Shows UI to enroll the network specified by |network_id| if appropriate | 239 // Shows UI to enroll the network specified by |network_id| if appropriate |
| 244 // and returns true, otherwise returns false. |parent_window| is used | 240 // and returns true, otherwise returns false. |
| 245 // to parent any configuration UI. If NULL a default window will be used. | 241 virtual bool EnrollNetwork(const std::string& network_id) = 0; |
| 246 virtual bool EnrollNetwork(const std::string& network_id, | |
| 247 gfx::NativeWindow parent_window) = 0; | |
| 248 | 242 |
| 249 // Shows UI to manage bluetooth devices. | 243 // Shows UI to manage bluetooth devices. |
| 250 virtual void ManageBluetoothDevices() = 0; | 244 virtual void ManageBluetoothDevices() = 0; |
| 251 | 245 |
| 252 // Toggles bluetooth. | 246 // Toggles bluetooth. |
| 253 virtual void ToggleBluetooth() = 0; | 247 virtual void ToggleBluetooth() = 0; |
| 254 | 248 |
| 255 // Shows UI to unlock a mobile sim. | 249 // Shows UI to unlock a mobile sim. |
| 256 virtual void ShowMobileSimDialog() = 0; | 250 virtual void ShowMobileSimDialog() = 0; |
| 257 | 251 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 virtual bool IsSearchKeyMappedToCapsLock() = 0; | 293 virtual bool IsSearchKeyMappedToCapsLock() = 0; |
| 300 | 294 |
| 301 // Returns accounts delegate for given user. | 295 // Returns accounts delegate for given user. |
| 302 virtual tray::UserAccountsDelegate* GetUserAccountsDelegate( | 296 virtual tray::UserAccountsDelegate* GetUserAccountsDelegate( |
| 303 const std::string& user_id) = 0; | 297 const std::string& user_id) = 0; |
| 304 }; | 298 }; |
| 305 | 299 |
| 306 } // namespace ash | 300 } // namespace ash |
| 307 | 301 |
| 308 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ | 302 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ |
| OLD | NEW |