Loosen up heuristics for detecting account creation forms.
[chromium-blink-merge.git] / content / public / common / content_constants.cc
blob9b0cdc4fe98ecc99a11c4f90c1c3b6b98740f256
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
3 // found in the LICENSE file.
5 #include "content/public/common/content_constants.h"
6 namespace content {
8 const FilePath::CharType kAppCacheDirname[] =
9 FILE_PATH_LITERAL("Application Cache");
10 const FilePath::CharType kPepperDataDirname[] =
11 FILE_PATH_LITERAL("Pepper Data");
12 const FilePath::CharType kStoragePartitionDirname[] =
13 FILE_PATH_LITERAL("Storage Partitions");
15 const char kBrowserPluginMimeType[] = "application/browser-plugin";
16 // TODO(fsamuel): Remove this once upstreaming of the new browser plugin is
17 // complete.
18 const char kBrowserPluginNewMimeType[] = "application/new-browser-plugin";
20 // This number used to be limited to 32 in the past (see b/535234).
21 const size_t kMaxRendererProcessCount = 82;
22 const int kMaxSessionHistoryEntries = 50;
23 const size_t kMaxTitleChars = 4 * 1024;
24 const size_t kMaxURLChars = 2 * 1024 * 1024;
25 const size_t kMaxURLDisplayChars = 32 * 1024;
27 #if defined(GOOGLE_CHROME_BUILD)
28 const wchar_t kBrowserAppName[] = L"Chrome";
29 const char kStatsFilename[] = "ChromeStats2";
30 #else
31 const wchar_t kBrowserAppName[] = L"Chromium";
32 const char kStatsFilename[] = "ChromiumStats2";
33 #endif
35 const int kStatsMaxThreads = 32;
36 const int kStatsMaxCounters = 3000;
38 const int kHistogramSynchronizerReservedSequenceNumber = 0;
40 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode";
41 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled";
42 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread";
44 } // namespace content