| 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 // A handful of resource-like constants related to the Content application. | 5 // A handful of resource-like constants related to the Content application. |
| 6 | 6 |
| 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
| 8 #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
| 9 | 9 |
| 10 #include <stddef.h> // For size_t | 10 #include <stddef.h> // For size_t |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
| 14 | 14 |
| 15 namespace content { | 15 namespace content { |
| 16 | 16 |
| 17 // The name of the directory under BrowserContext::GetPath where the AppCache is | 17 // The name of the directory under BrowserContext::GetPath where the AppCache is |
| 18 // put. | 18 // put. |
| 19 CONTENT_EXPORT extern const base::FilePath::CharType kAppCacheDirname[]; | 19 CONTENT_EXPORT extern const base::FilePath::CharType kAppCacheDirname[]; |
| 20 // The name of the directory under BrowserContext::GetPath where Pepper plugin | 20 // The name of the directory under BrowserContext::GetPath where Pepper plugin |
| 21 // data is put. | 21 // data is put. |
| 22 CONTENT_EXPORT extern const base::FilePath::CharType kPepperDataDirname[]; | 22 CONTENT_EXPORT extern const base::FilePath::CharType kPepperDataDirname[]; |
| 23 | 23 |
| 24 CONTENT_EXPORT extern const base::FilePath::CharType kCookieFilename[]; |
| 25 |
| 24 // The MIME type used for the browser plugin. | 26 // The MIME type used for the browser plugin. |
| 25 CONTENT_EXPORT extern const char kBrowserPluginMimeType[]; | 27 CONTENT_EXPORT extern const char kBrowserPluginMimeType[]; |
| 26 | 28 |
| 27 CONTENT_EXPORT extern const char kFlashPluginName[]; | 29 CONTENT_EXPORT extern const char kFlashPluginName[]; |
| 28 CONTENT_EXPORT extern const char kFlashPluginSwfMimeType[]; | 30 CONTENT_EXPORT extern const char kFlashPluginSwfMimeType[]; |
| 29 CONTENT_EXPORT extern const char kFlashPluginSwfExtension[]; | 31 CONTENT_EXPORT extern const char kFlashPluginSwfExtension[]; |
| 30 CONTENT_EXPORT extern const char kFlashPluginSwfDescription[]; | 32 CONTENT_EXPORT extern const char kFlashPluginSwfDescription[]; |
| 31 CONTENT_EXPORT extern const char kFlashPluginSplMimeType[]; | 33 CONTENT_EXPORT extern const char kFlashPluginSplMimeType[]; |
| 32 CONTENT_EXPORT extern const char kFlashPluginSplExtension[]; | 34 CONTENT_EXPORT extern const char kFlashPluginSplExtension[]; |
| 33 CONTENT_EXPORT extern const char kFlashPluginSplDescription[]; | 35 CONTENT_EXPORT extern const char kFlashPluginSplDescription[]; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 kGpuCompositingFieldTrialForceCompositingEnabledName[]; | 68 kGpuCompositingFieldTrialForceCompositingEnabledName[]; |
| 67 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[]; | 69 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[]; |
| 68 | 70 |
| 69 // Shared constants for the low latency flash audio field trial. | 71 // Shared constants for the low latency flash audio field trial. |
| 70 CONTENT_EXPORT extern const char kLowLatencyFlashAudioFieldTrialName[]; | 72 CONTENT_EXPORT extern const char kLowLatencyFlashAudioFieldTrialName[]; |
| 71 CONTENT_EXPORT extern const char kLowLatencyFlashAudioFieldTrialEnabledName[]; | 73 CONTENT_EXPORT extern const char kLowLatencyFlashAudioFieldTrialEnabledName[]; |
| 72 | 74 |
| 73 } // namespace content | 75 } // namespace content |
| 74 | 76 |
| 75 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ | 77 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ |
| OLD | NEW |