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

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

Issue 2216933003: Implement the palette help and options buttons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@palette-delegate
Patch Set: Address nit Created 4 years, 4 months 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
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 #ifndef ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ 5 #ifndef ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
6 #define ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ 6 #define ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 182
183 // Shows help. 183 // Shows help.
184 virtual void ShowHelp(); 184 virtual void ShowHelp();
185 185
186 // Show accessilibity help. 186 // Show accessilibity help.
187 virtual void ShowAccessibilityHelp(); 187 virtual void ShowAccessibilityHelp();
188 188
189 // Show the settings related to accessilibity. 189 // Show the settings related to accessilibity.
190 virtual void ShowAccessibilitySettings(); 190 virtual void ShowAccessibilitySettings();
191 191
192 // Shows the help center article for palette.
193 virtual void ShowPaletteHelp();
194
195 // Shows the settings related to the palette.
196 virtual void ShowPaletteSettings();
197
192 // Shows more information about public account mode. 198 // Shows more information about public account mode.
193 virtual void ShowPublicAccountInfo(); 199 virtual void ShowPublicAccountInfo();
194 200
195 // Shows information about enterprise enrolled devices. 201 // Shows information about enterprise enrolled devices.
196 virtual void ShowEnterpriseInfo(); 202 virtual void ShowEnterpriseInfo();
197 203
198 // Shows information about supervised users. 204 // Shows information about supervised users.
199 virtual void ShowSupervisedUserInfo(); 205 virtual void ShowSupervisedUserInfo();
200 206
201 // Shows login UI to add other users to this session. 207 // Shows login UI to add other users to this session.
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
323 // Creates a system tray item for display rotation lock. 329 // Creates a system tray item for display rotation lock.
324 // TODO(jamescook): Remove this when mus has support for display management 330 // TODO(jamescook): Remove this when mus has support for display management
325 // and we have a DisplayManager equivalent. See http://crbug.com/548429 331 // and we have a DisplayManager equivalent. See http://crbug.com/548429
326 virtual std::unique_ptr<SystemTrayItem> CreateRotationLockTrayItem( 332 virtual std::unique_ptr<SystemTrayItem> CreateRotationLockTrayItem(
327 SystemTray* tray); 333 SystemTray* tray);
328 }; 334 };
329 335
330 } // namespace ash 336 } // namespace ash
331 337
332 #endif // ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_ 338 #endif // ASH_COMMON_SYSTEM_TRAY_SYSTEM_TRAY_DELEGATE_H_
OLDNEW
« no previous file with comments | « ash/common/system/chromeos/palette/palette_tray.cc ('k') | ash/common/system/tray/system_tray_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698