1. Enable large object pointer offset check in release build.
[chromium-blink-merge.git] / ash / high_contrast / high_contrast_controller.h
blobb5b589f72ac987a640a0c3dadfb9f5538af96f02
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_HIGH_CONTRAST_HIGH_CONTRAST_CONTROLLER_H_
6 #define ASH_HIGH_CONTRAST_HIGH_CONTRAST_CONTROLLER_H_
7 #pragma once
9 #include "ash/ash_export.h"
10 #include "base/basictypes.h"
12 namespace aura {
13 class RootWindow;
16 namespace ash {
18 class ASH_EXPORT HighContrastController {
19 public:
20 HighContrastController();
22 ~HighContrastController() {}
24 void SetEnabled(bool enabled);
26 private:
27 aura::RootWindow* root_window_;
29 bool enabled_;
31 DISALLOW_COPY_AND_ASSIGN(HighContrastController);
34 } // namespace ash
36 #endif // ASH_HIGH_CONTRAST_HIGH_CONTRAST_CONTROLLER_H_