| 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 "content/public/common/content_constants.h" | 5 #include "content/public/common/content_constants.h" |
| 6 namespace content { | 6 namespace content { |
| 7 | 7 |
| 8 const FilePath::CharType kAppCacheDirname[] = | 8 const FilePath::CharType kAppCacheDirname[] = |
| 9 FILE_PATH_LITERAL("Application Cache"); | 9 FILE_PATH_LITERAL("Application Cache"); |
| 10 const FilePath::CharType kPepperDataDirname[] = | 10 const FilePath::CharType kPepperDataDirname[] = |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 const int kStatsMaxThreads = 32; | 35 const int kStatsMaxThreads = 32; |
| 36 const int kStatsMaxCounters = 3000; | 36 const int kStatsMaxCounters = 3000; |
| 37 | 37 |
| 38 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 38 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
| 39 | 39 |
| 40 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; | 40 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; |
| 41 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; | 41 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; |
| 42 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; | 42 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; |
| 43 | 43 |
| 44 const char kStage3DFieldTrialName[] = "EnableStage3D"; |
| 45 const char kStage3DFieldTrialBlacklistedName[] = "blacklisted"; |
| 46 const char kStage3DFieldTrialEnabledName[] = "enabled"; |
| 47 |
| 44 } // namespace content | 48 } // namespace content |
| OLD | NEW |