| 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 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 const base::FilePath::CharType kAppCacheDirname[] = | 9 const base::FilePath::CharType kAppCacheDirname[] = |
| 10 FILE_PATH_LITERAL("Application Cache"); | 10 FILE_PATH_LITERAL("Application Cache"); |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 const char kStatsFilename[] = "ChromeStats2"; | 31 const char kStatsFilename[] = "ChromeStats2"; |
| 32 #else | 32 #else |
| 33 const char kStatsFilename[] = "ChromiumStats2"; | 33 const char kStatsFilename[] = "ChromiumStats2"; |
| 34 #endif | 34 #endif |
| 35 | 35 |
| 36 const int kStatsMaxThreads = 32; | 36 const int kStatsMaxThreads = 32; |
| 37 const int kStatsMaxCounters = 3000; | 37 const int kStatsMaxCounters = 3000; |
| 38 | 38 |
| 39 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 39 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
| 40 | 40 |
| 41 const char kLowLatencyFlashAudioFieldTrialName[] = "LowLatencyFlashAudio"; | 41 const char kFlashHwVideoDecodeFieldTrialName[] = "FlashHardwareVideoDecode"; |
| 42 const char kLowLatencyFlashAudioFieldTrialEnabledName[] = "LowLatency"; | 42 const char kFlashHwVideoDecodeFieldTrialEnabledName[] = "HwVideo"; |
| 43 | 43 |
| 44 } // namespace content | 44 } // namespace content |
| OLD | NEW |