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
3 // found in the LICENSE file.
5 #ifndef ASH_BRIGHTNESS_CONTROL_DELEGATE_H_
6 #define ASH_BRIGHTNESS_CONTROL_DELEGATE_H_
15 // Delegate for controlling the brightness.
16 class BrightnessControlDelegate
{
18 virtual ~BrightnessControlDelegate() {}
20 virtual bool HandleBrightnessDown(const ui::Accelerator
& accelerator
) = 0;
21 virtual bool HandleBrightnessUp(const ui::Accelerator
& accelerator
) = 0;
26 #endif // ASH_BRIGHTNESS_CONTROL_DELEGATE_H_