blob: 0fb09db66320cca8c4c4ded51429b5bcbb477471 [file] [log] [blame]
[email protected]c4f51d22013-11-05 03:11:261// Copyright (c) 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 UI_VIEWS_VIEWS_SWITCHES_H_
6#define UI_VIEWS_VIEWS_SWITCHES_H_
7
8#include "ui/views/views_export.h"
9
10#include "build/build_config.h"
11
12namespace views {
13namespace switches {
14
15// Please keep alphabetized.
[email protected]88b47ad72013-11-21 03:34:3816VIEWS_EXPORT extern const char kDisableViewsRectBasedTargeting[];
[email protected]c4f51d22013-11-05 03:11:2617
[email protected]a1e109c2014-05-02 01:25:3918#if defined(USE_X11) && !defined(OS_CHROMEOS)
19VIEWS_EXPORT extern const char kEnableTransparentVisuals[];
20#endif
21
[email protected]c4f51d22013-11-05 03:11:2622// Returns true if rect-based targeting in views should be used.
[email protected]88b47ad72013-11-21 03:34:3823VIEWS_EXPORT bool IsRectBasedTargetingEnabled();
[email protected]c4f51d22013-11-05 03:11:2624
25} // namespace switches
26} // namespace views
27
28#endif // UI_VIEWS_VIEWS_SWITCHES_H_