| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/ui/ash/system_tray_delegate_linux.h" | 5 #include "chrome/browser/ui/ash/system_tray_delegate_linux.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 virtual void GetCurrentIMEProperties( | 206 virtual void GetCurrentIMEProperties( |
| 207 ash::IMEPropertyInfoList* list) OVERRIDE { | 207 ash::IMEPropertyInfoList* list) OVERRIDE { |
| 208 } | 208 } |
| 209 | 209 |
| 210 virtual void SwitchIME(const std::string& ime_id) OVERRIDE { | 210 virtual void SwitchIME(const std::string& ime_id) OVERRIDE { |
| 211 } | 211 } |
| 212 | 212 |
| 213 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE { | 213 virtual void ActivateIMEProperty(const std::string& key) OVERRIDE { |
| 214 } | 214 } |
| 215 | 215 |
| 216 virtual void ShowNetworkConfigure(const std::string& network_id, | 216 virtual void ShowNetworkConfigure(const std::string& network_id) OVERRIDE { |
| 217 gfx::NativeWindow parent_window) OVERRIDE { | |
| 218 } | 217 } |
| 219 | 218 |
| 220 virtual bool EnrollNetwork(const std::string& network_id, | 219 virtual bool EnrollNetwork(const std::string& network_id) OVERRIDE { |
| 221 gfx::NativeWindow parent_window) OVERRIDE { | |
| 222 return true; | 220 return true; |
| 223 } | 221 } |
| 224 | 222 |
| 225 virtual void ManageBluetoothDevices() OVERRIDE { | 223 virtual void ManageBluetoothDevices() OVERRIDE { |
| 226 } | 224 } |
| 227 | 225 |
| 228 virtual void ToggleBluetooth() OVERRIDE { | 226 virtual void ToggleBluetooth() OVERRIDE { |
| 229 } | 227 } |
| 230 | 228 |
| 231 virtual void ShowMobileSimDialog() OVERRIDE { | 229 virtual void ShowMobileSimDialog() OVERRIDE { |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 | 333 |
| 336 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateLinux); | 334 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateLinux); |
| 337 }; | 335 }; |
| 338 | 336 |
| 339 } // namespace | 337 } // namespace |
| 340 | 338 |
| 341 | 339 |
| 342 ash::SystemTrayDelegate* CreateLinuxSystemTrayDelegate() { | 340 ash::SystemTrayDelegate* CreateLinuxSystemTrayDelegate() { |
| 343 return new SystemTrayDelegateLinux(); | 341 return new SystemTrayDelegateLinux(); |
| 344 } | 342 } |
| OLD | NEW |