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 // A handful of resource-like constants related to the Content application. | 5 // A handful of resource-like constants related to the Content application. |
6 | 6 |
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
8 #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
9 | 9 |
10 #include <stddef.h> // For size_t | 10 #include <stddef.h> // For size_t |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
59 // sends an unprovoked update, such as after a page has been loaded. Using | 59 // sends an unprovoked update, such as after a page has been loaded. Using |
60 // this reserved constant avoids any chance of confusion with a response having | 60 // this reserved constant avoids any chance of confusion with a response having |
61 // a browser-supplied sequence number. | 61 // a browser-supplied sequence number. |
62 CONTENT_EXPORT extern const int kHistogramSynchronizerReservedSequenceNumber; | 62 CONTENT_EXPORT extern const int kHistogramSynchronizerReservedSequenceNumber; |
63 | 63 |
64 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialName[]; | 64 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialName[]; |
65 CONTENT_EXPORT extern const char | 65 CONTENT_EXPORT extern const char |
66 kGpuCompositingFieldTrialForceCompositingEnabledName[]; | 66 kGpuCompositingFieldTrialForceCompositingEnabledName[]; |
67 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[]; | 67 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[]; |
68 | 68 |
69 CONTENT_EXPORT extern const char kStage3DFieldTrialName[]; | |
70 CONTENT_EXPORT extern const char | |
71 kStage3DFieldTrialBlacklistedName[]; | |
Alexei Svitkine (slow)
2012/09/19 20:33:16
Nit: I think this fits on the previous line.
| |
72 CONTENT_EXPORT extern const char | |
73 kStage3DFieldTrialEnabledName[]; | |
Alexei Svitkine (slow)
2012/09/19 20:33:16
Nit: I think this fits on the previous line.
| |
74 | |
69 } // namespace content | 75 } // namespace content |
70 | 76 |
71 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 77 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
OLD | NEW |