| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef ASH_ACCELERATORS_DEBUG_COMMANDS_H_ | |
| 6 #define ASH_ACCELERATORS_DEBUG_COMMANDS_H_ | |
| 7 | |
| 8 #include "ash/accelerators/accelerator_table.h" | |
| 9 #include "ash/ash_export.h" | |
| 10 | |
| 11 // This file contains implementations of commands that are used only when | |
| 12 // debugging. | |
| 13 // | |
| 14 // NOTE: these commands may be enabled in about:flags, so that they may be | |
| 15 // available at run time. | |
| 16 namespace ash { | |
| 17 namespace debug { | |
| 18 | |
| 19 // Print the views::View, ui::Layer and aura::Window hierarchies. This may be | |
| 20 // useful in debugging user reported bugs. | |
| 21 ASH_EXPORT void PrintUIHierarchies(); | |
| 22 | |
| 23 // Returns true if debug accelerators are enabled. | |
| 24 ASH_EXPORT bool DebugAcceleratorsEnabled(); | |
| 25 | |
| 26 // Performs |action| if |action| belongs to a debug-only accelerator and debug | |
| 27 // accelerators are enabled. | |
| 28 ASH_EXPORT void PerformDebugActionIfEnabled(AcceleratorAction action); | |
| 29 | |
| 30 } // namespace debug | |
| 31 } // namespace ash | |
| 32 | |
| 33 #endif // ASH_ACCELERATORS_DEBUG_COMMANDS_H_ | |
| OLD | NEW |