| 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 #include "ash/common/system/tray/default_system_tray_delegate.h" | 5 #include "ash/system/tray/default_system_tray_delegate.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 namespace ash { | 9 namespace ash { |
| 10 | 10 |
| 11 DefaultSystemTrayDelegate::DefaultSystemTrayDelegate() | 11 DefaultSystemTrayDelegate::DefaultSystemTrayDelegate() |
| 12 : bluetooth_enabled_(true) {} | 12 : bluetooth_enabled_(true) {} |
| 13 | 13 |
| 14 DefaultSystemTrayDelegate::~DefaultSystemTrayDelegate() {} | 14 DefaultSystemTrayDelegate::~DefaultSystemTrayDelegate() {} |
| 15 | 15 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 bool DefaultSystemTrayDelegate::GetBluetoothDiscovering() { | 54 bool DefaultSystemTrayDelegate::GetBluetoothDiscovering() { |
| 55 return false; | 55 return false; |
| 56 } | 56 } |
| 57 | 57 |
| 58 int DefaultSystemTrayDelegate::GetSystemTrayMenuWidth() { | 58 int DefaultSystemTrayDelegate::GetSystemTrayMenuWidth() { |
| 59 // This is the default width for English languages. | 59 // This is the default width for English languages. |
| 60 return 300; | 60 return 300; |
| 61 } | 61 } |
| 62 | 62 |
| 63 } // namespace ash | 63 } // namespace ash |
| OLD | NEW |