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"); |
11 const base::FilePath::CharType kPepperDataDirname[] = | 11 const base::FilePath::CharType kPepperDataDirname[] = |
12 FILE_PATH_LITERAL("Pepper Data"); | 12 FILE_PATH_LITERAL("Pepper Data"); |
13 | 13 |
14 const base::FilePath::CharType kCookieFilename[] = | |
15 FILE_PATH_LITERAL("Cookies"); | |
16 | |
17 const char kBrowserPluginMimeType[] = "application/browser-plugin"; | 14 const char kBrowserPluginMimeType[] = "application/browser-plugin"; |
18 | 15 |
19 const char kFlashPluginName[] = "Shockwave Flash"; | 16 const char kFlashPluginName[] = "Shockwave Flash"; |
20 const char kFlashPluginSwfMimeType[] = "application/x-shockwave-flash"; | 17 const char kFlashPluginSwfMimeType[] = "application/x-shockwave-flash"; |
21 const char kFlashPluginSwfExtension[] = "swf"; | 18 const char kFlashPluginSwfExtension[] = "swf"; |
22 const char kFlashPluginSwfDescription[] = "Shockwave Flash"; | 19 const char kFlashPluginSwfDescription[] = "Shockwave Flash"; |
23 const char kFlashPluginSplMimeType[] = "application/futuresplash"; | 20 const char kFlashPluginSplMimeType[] = "application/futuresplash"; |
24 const char kFlashPluginSplExtension[] = "spl"; | 21 const char kFlashPluginSplExtension[] = "spl"; |
25 const char kFlashPluginSplDescription[] = "FutureSplash Player"; | 22 const char kFlashPluginSplDescription[] = "FutureSplash Player"; |
26 | 23 |
(...skipping 16 matching lines...) Expand all Loading... |
43 const int kHistogramSynchronizerReservedSequenceNumber = 0; | 40 const int kHistogramSynchronizerReservedSequenceNumber = 0; |
44 | 41 |
45 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; | 42 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; |
46 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; | 43 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; |
47 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; | 44 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; |
48 | 45 |
49 const char kLowLatencyFlashAudioFieldTrialName[] = "LowLatencyFlashAudio"; | 46 const char kLowLatencyFlashAudioFieldTrialName[] = "LowLatencyFlashAudio"; |
50 const char kLowLatencyFlashAudioFieldTrialEnabledName[] = "LowLatency"; | 47 const char kLowLatencyFlashAudioFieldTrialEnabledName[] = "LowLatency"; |
51 | 48 |
52 } // namespace content | 49 } // namespace content |
OLD | NEW |