OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/switches.h" | 5 #include "cc/base/switches.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 | 8 |
9 namespace cc { | 9 namespace cc { |
10 namespace switches { | 10 namespace switches { |
11 | 11 |
12 // On platforms where checkerboards are used, prefer background colors instead | 12 // On platforms where checkerboards are used, prefer background colors instead |
13 // of checkerboards. | 13 // of checkerboards. |
14 const char kBackgroundColorInsteadOfCheckerboard[] = | 14 const char kBackgroundColorInsteadOfCheckerboard[] = |
15 "background-color-instead-of-checkerboard"; | 15 "background-color-instead-of-checkerboard"; |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 | 111 |
112 #if defined(OS_ANDROID) | 112 #if defined(OS_ANDROID) |
113 return true; | 113 return true; |
114 #else | 114 #else |
115 return false; | 115 return false; |
116 #endif | 116 #endif |
117 } | 117 } |
118 | 118 |
119 } // namespace switches | 119 } // namespace switches |
120 } // namespace cc | 120 } // namespace cc |
OLD | NEW |