Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: ash/common/system/tray/system_tray_delegate.cc

Issue 2448373002: chromeos: Move ownership of system tray width from chrome to ash (Closed)
Patch Set: comment about DIPS Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | chrome/app/resources/locale_settings.grd » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "ash/common/system/tray/system_tray_delegate.h" 5 #include "ash/common/system/tray/system_tray_delegate.h"
6 6
7 #include "ash/common/system/tray/ime_info.h" 7 #include "ash/common/system/tray/ime_info.h"
8 #include "ash/common/system/tray/system_tray_item.h" 8 #include "ash/common/system/tray/system_tray_item.h"
9 9
10 namespace ash { 10 namespace ash {
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 bool SystemTrayDelegate::GetSessionStartTime( 143 bool SystemTrayDelegate::GetSessionStartTime(
144 base::TimeTicks* session_start_time) { 144 base::TimeTicks* session_start_time) {
145 return false; 145 return false;
146 } 146 }
147 147
148 bool SystemTrayDelegate::GetSessionLengthLimit( 148 bool SystemTrayDelegate::GetSessionLengthLimit(
149 base::TimeDelta* session_length_limit) { 149 base::TimeDelta* session_length_limit) {
150 return false; 150 return false;
151 } 151 }
152 152
153 int SystemTrayDelegate::GetSystemTrayMenuWidth() {
154 return 0;
155 }
156
157 void SystemTrayDelegate::ActiveUserWasChanged() {} 153 void SystemTrayDelegate::ActiveUserWasChanged() {}
158 154
159 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() { 155 bool SystemTrayDelegate::IsSearchKeyMappedToCapsLock() {
160 return false; 156 return false;
161 } 157 }
162 158
163 void SystemTrayDelegate::AddCustodianInfoTrayObserver( 159 void SystemTrayDelegate::AddCustodianInfoTrayObserver(
164 CustodianInfoTrayObserver* observer) {} 160 CustodianInfoTrayObserver* observer) {}
165 161
166 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver( 162 void SystemTrayDelegate::RemoveCustodianInfoTrayObserver(
(...skipping 11 matching lines...) Expand all
178 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const { 174 VPNDelegate* SystemTrayDelegate::GetVPNDelegate() const {
179 return nullptr; 175 return nullptr;
180 } 176 }
181 177
182 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem( 178 std::unique_ptr<SystemTrayItem> SystemTrayDelegate::CreateRotationLockTrayItem(
183 SystemTray* tray) { 179 SystemTray* tray) {
184 return nullptr; 180 return nullptr;
185 } 181 }
186 182
187 } // namespace ash 183 } // namespace ash
OLDNEW
« no previous file with comments | « ash/common/system/tray/system_tray_delegate.h ('k') | chrome/app/resources/locale_settings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698