OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2017 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 // Defines all the "viz" command-line switches. | |
6 | |
7 #ifndef COMPONENTS_VIZ_BASE_SWITCHES_H_ | |
8 #define COMPONENTS_VIZ_BASE_SWITCHES_H_ | |
9 | |
10 #include "components/viz/base/base_export.h" | |
11 | |
12 namespace viz { | |
13 namespace switches { | |
14 | |
15 VIZ_BASE_EXPORT extern const char kUseVizHitTest[]; | |
Fady Samuel
2017/06/15 15:02:40
We kind of decided to move switches to common...
gklassen
2017/06/15 19:40:17
Done.
| |
16 | |
17 } // namespace switches | |
18 } // namespace viz | |
19 | |
20 #endif // COMPONENTS_VIZ_BASE_SWITCHES_H_ | |
OLD | NEW |