// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // A handful of resource-like constants related to the Content application. #ifndef CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ #define CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ #include // For size_t #include "base/files/file_path.h" #include "build/build_config.h" #include "content/common/content_export.h" namespace content { // The name of the directory under BrowserContext::GetPath where the AppCache is // put. CONTENT_EXPORT extern const base::FilePath::CharType kAppCacheDirname[]; // The name of the directory under BrowserContext::GetPath where Pepper plugin // data is put. CONTENT_EXPORT extern const base::FilePath::CharType kPepperDataDirname[]; // The MIME type used for the browser plugin. CONTENT_EXPORT extern const char kBrowserPluginMimeType[]; CONTENT_EXPORT extern const char kFlashPluginName[]; CONTENT_EXPORT extern const char kFlashPluginSwfMimeType[]; CONTENT_EXPORT extern const char kFlashPluginSwfExtension[]; CONTENT_EXPORT extern const char kFlashPluginSwfDescription[]; CONTENT_EXPORT extern const char kFlashPluginSplMimeType[]; CONTENT_EXPORT extern const char kFlashPluginSplExtension[]; CONTENT_EXPORT extern const char kFlashPluginSplDescription[]; // The maximum number of session history entries per tab. constexpr int kMaxSessionHistoryEntries = 50; // The maximum number of characters in the URL that we're willing to accept // in the browser process. It is set low enough to avoid damage to the browser // but high enough that a web site can abuse location.hash for a little storage. // We have different values for "max accepted" and "max displayed" because // a data: URI may be legitimately massive, but the full URI would kill all // known operating systems if you dropped it into a UI control. CONTENT_EXPORT extern const size_t kMaxURLChars; CONTENT_EXPORT extern const size_t kMaxURLDisplayChars; extern const char kStatsFilename[]; extern const int kStatsMaxThreads; extern const int kStatsMaxCounters; // Most sequence numbers are used by a renderer when responding to a browser // request for histogram data. This reserved number is used when a renderer // sends an unprovoked update, such as after a page has been loaded. Using // this reserved constant avoids any chance of confusion with a response having // a browser-supplied sequence number. CONTENT_EXPORT extern const int kHistogramSynchronizerReservedSequenceNumber; // How long to keep a detachable resource load alive before aborting it. CONTENT_EXPORT extern const int kDefaultDetachableCancelDelayMs; // Defines a HTTP header name that is set internally, and some code places // in content need to know the name to manage the header stored in // network::ResourceRequest::cors_exempt_headers. CONTENT_EXPORT extern const char kCorsExemptPurposeHeaderName[]; CONTENT_EXPORT extern const char kCorsExemptRequestedWithHeaderName[]; #if defined(OS_LINUX) // The OOM score adj constants // The highest and lowest assigned OOM score adjustment (oom_score_adj) for // renderers and extensions used by the OomPriority Manager. CONTENT_EXPORT extern const int kLowestRendererOomScore; CONTENT_EXPORT extern const int kHighestRendererOomScore; CONTENT_EXPORT extern const int kZygoteOomScore; CONTENT_EXPORT extern const int kMiscOomScore; CONTENT_EXPORT extern const int kPluginOomScore; #endif } // namespace content #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_