OLD | NEW |
(Empty) | |
| 1 // 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 |
| 12 namespace views { |
| 13 namespace switches { |
| 14 |
| 15 // Please keep alphabetized. |
| 16 VIEWS_EXPORT extern const char kViewsUseRectBasedTargeting[]; |
| 17 |
| 18 // Returns true if rect-based targeting in views should be used. |
| 19 VIEWS_EXPORT bool UseRectBasedTargeting(); |
| 20 |
| 21 } // namespace switches |
| 22 } // namespace views |
| 23 |
| 24 #endif // UI_VIEWS_VIEWS_SWITCHES_H_ |
OLD | NEW |