| 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 namespace content { | 7 namespace content { |
| 7 | 8 |
| 8 const base::FilePath::CharType kAppCacheDirname[] = | 9 const base::FilePath::CharType kAppCacheDirname[] = |
| 9 FILE_PATH_LITERAL("Application Cache"); | 10 FILE_PATH_LITERAL("Application Cache"); |
| 10 const base::FilePath::CharType kPepperDataDirname[] = | 11 const base::FilePath::CharType kPepperDataDirname[] = |
| 11 FILE_PATH_LITERAL("Pepper Data"); | 12 FILE_PATH_LITERAL("Pepper Data"); |
| 12 | 13 |
| 13 const char kBrowserPluginMimeType[] = "application/browser-plugin"; | 14 const char kBrowserPluginMimeType[] = "application/browser-plugin"; |
| 14 | 15 |
| 16 const char kFlashPluginName[] = "Shockwave Flash"; |
| 17 const char kFlashPluginSwfMimeType[] = "application/x-shockwave-flash"; |
| 18 const char kFlashPluginSwfExtension[] = "swf"; |
| 19 const char kFlashPluginSwfDescription[] = "Shockwave Flash"; |
| 20 const char kFlashPluginSplMimeType[] = "application/futuresplash"; |
| 21 const char kFlashPluginSplExtension[] = "spl"; |
| 22 const char kFlashPluginSplDescription[] = "FutureSplash Player"; |
| 23 |
| 15 // This number used to be limited to 32 in the past (see b/535234). | 24 // This number used to be limited to 32 in the past (see b/535234). |
| 16 const size_t kMaxRendererProcessCount = 82; | 25 const size_t kMaxRendererProcessCount = 82; |
| 17 const int kMaxSessionHistoryEntries = 50; | 26 const int kMaxSessionHistoryEntries = 50; |
| 18 const size_t kMaxTitleChars = 4 * 1024; | 27 const size_t kMaxTitleChars = 4 * 1024; |
| 19 const size_t kMaxURLChars = 2 * 1024 * 1024; | 28 const size_t kMaxURLChars = 2 * 1024 * 1024; |
| 20 const size_t kMaxURLDisplayChars = 32 * 1024; | 29 const size_t kMaxURLDisplayChars = 32 * 1024; |
| 21 | 30 |
| 22 #if defined(GOOGLE_CHROME_BUILD) | 31 #if defined(GOOGLE_CHROME_BUILD) |
| 23 const char kStatsFilename[] = "ChromeStats2"; | 32 const char kStatsFilename[] = "ChromeStats2"; |
| 24 #else | 33 #else |
| 25 const char kStatsFilename[] = "ChromiumStats2"; | 34 const char kStatsFilename[] = "ChromiumStats2"; |
| 26 #endif | 35 #endif |
| 27 | 36 |
| 28 const int kStatsMaxThreads = 32; | 37 const int kStatsMaxThreads = 32; |
| 29 const int kStatsMaxCounters = 3000; | 38 const int kStatsMaxCounters = 3000; |
| 30 | 39 |
| 31 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 40 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
| 32 | 41 |
| 33 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; | 42 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; |
| 34 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; | 43 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; |
| 35 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; | 44 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; |
| 36 | 45 |
| 37 const char kLowLatencyFlashAudioFieldTrialName[] = "LowLatencyFlashAudio"; | 46 const char kLowLatencyFlashAudioFieldTrialName[] = "LowLatencyFlashAudio"; |
| 38 const char kLowLatencyFlashAudioFieldTrialEnabledName[] = "LowLatency"; | 47 const char kLowLatencyFlashAudioFieldTrialEnabledName[] = "LowLatency"; |
| 39 | 48 |
| 40 } // namespace content | 49 } // namespace content |
| OLD | NEW |