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 #include "chrome/browser/ui/ash/system_tray_delegate_win.h" | 5 #include "chrome/browser/ui/ash/system_tray_delegate_win.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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 virtual void ShowSettings() OVERRIDE { | 96 virtual void ShowSettings() OVERRIDE { |
97 } | 97 } |
98 | 98 |
99 virtual bool ShouldShowSettings() OVERRIDE { | 99 virtual bool ShouldShowSettings() OVERRIDE { |
100 return true; | 100 return true; |
101 } | 101 } |
102 | 102 |
103 virtual void ShowDateSettings() OVERRIDE { | 103 virtual void ShowDateSettings() OVERRIDE { |
104 } | 104 } |
105 | 105 |
| 106 virtual void ShowSetTimeDialog() OVERRIDE { |
| 107 } |
| 108 |
106 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE { | 109 virtual void ShowNetworkSettings(const std::string& service_path) OVERRIDE { |
107 } | 110 } |
108 | 111 |
109 virtual void ShowBluetoothSettings() OVERRIDE { | 112 virtual void ShowBluetoothSettings() OVERRIDE { |
110 } | 113 } |
111 | 114 |
112 virtual void ShowDisplaySettings() OVERRIDE { | 115 virtual void ShowDisplaySettings() OVERRIDE { |
113 } | 116 } |
114 | 117 |
115 virtual void ShowChromeSlow() OVERRIDE { | 118 virtual void ShowChromeSlow() OVERRIDE { |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 | 343 |
341 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin); | 344 DISALLOW_COPY_AND_ASSIGN(SystemTrayDelegateWin); |
342 }; | 345 }; |
343 | 346 |
344 } // namespace | 347 } // namespace |
345 | 348 |
346 | 349 |
347 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() { | 350 ash::SystemTrayDelegate* CreateWindowsSystemTrayDelegate() { |
348 return new SystemTrayDelegateWin(); | 351 return new SystemTrayDelegateWin(); |
349 } | 352 } |
OLD | NEW |