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