Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Side by Side Diff: content/public/common/content_constants.cc

Issue 11052019: <browser> Make new implementation the default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove flag from chrome://flags, add platform app check for both implementation. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/public/common/content_constants.h ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 namespace content { 6 namespace content {
7 7
8 const FilePath::CharType kAppCacheDirname[] = 8 const FilePath::CharType kAppCacheDirname[] =
9 FILE_PATH_LITERAL("Application Cache"); 9 FILE_PATH_LITERAL("Application Cache");
10 const FilePath::CharType kPepperDataDirname[] = 10 const FilePath::CharType kPepperDataDirname[] =
11 FILE_PATH_LITERAL("Pepper Data"); 11 FILE_PATH_LITERAL("Pepper Data");
12 12
13 const char kBrowserPluginMimeType[] = "application/browser-plugin"; 13 const char kBrowserPluginMimeType[] = "application/browser-plugin";
14 // TODO(fsamuel): Remove this once upstreaming of the new browser plugin is
15 // complete.
16 const char kBrowserPluginNewMimeType[] = "application/new-browser-plugin";
17 14
18 // This number used to be limited to 32 in the past (see b/535234). 15 // This number used to be limited to 32 in the past (see b/535234).
19 const size_t kMaxRendererProcessCount = 82; 16 const size_t kMaxRendererProcessCount = 82;
20 const int kMaxSessionHistoryEntries = 50; 17 const int kMaxSessionHistoryEntries = 50;
21 const size_t kMaxTitleChars = 4 * 1024; 18 const size_t kMaxTitleChars = 4 * 1024;
22 const size_t kMaxURLChars = 2 * 1024 * 1024; 19 const size_t kMaxURLChars = 2 * 1024 * 1024;
23 const size_t kMaxURLDisplayChars = 32 * 1024; 20 const size_t kMaxURLDisplayChars = 32 * 1024;
24 21
25 #if defined(GOOGLE_CHROME_BUILD) 22 #if defined(GOOGLE_CHROME_BUILD)
26 const wchar_t kBrowserAppName[] = L"Chrome"; 23 const wchar_t kBrowserAppName[] = L"Chrome";
(...skipping 10 matching lines...) Expand all
37 34
38 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode"; 35 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode";
39 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled"; 36 const char kGpuCompositingFieldTrialForceCompositingEnabledName[] = "enabled";
40 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread"; 37 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread";
41 38
42 const char kStage3DFieldTrialName[] = "EnableStage3D"; 39 const char kStage3DFieldTrialName[] = "EnableStage3D";
43 const char kStage3DFieldTrialBlacklistedName[] = "blacklisted"; 40 const char kStage3DFieldTrialBlacklistedName[] = "blacklisted";
44 const char kStage3DFieldTrialEnabledName[] = "enabled"; 41 const char kStage3DFieldTrialEnabledName[] = "enabled";
45 42
46 } // namespace content 43 } // namespace content
OLDNEW
« no previous file with comments | « content/public/common/content_constants.h ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698