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

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

Issue 10811002: Add threaded compositing mode to field trial (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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
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[] =
(...skipping 14 matching lines...) Expand all
25 #else 25 #else
26 const wchar_t kBrowserAppName[] = L"Chromium"; 26 const wchar_t kBrowserAppName[] = L"Chromium";
27 const char kStatsFilename[] = "ChromiumStats2"; 27 const char kStatsFilename[] = "ChromiumStats2";
28 #endif 28 #endif
29 29
30 const int kStatsMaxThreads = 32; 30 const int kStatsMaxThreads = 32;
31 const int kStatsMaxCounters = 3000; 31 const int kStatsMaxCounters = 3000;
32 32
33 const int kHistogramSynchronizerReservedSequenceNumber = 0; 33 const int kHistogramSynchronizerReservedSequenceNumber = 0;
34 34
35 const char kGpuCompositingFieldTrialName[] = "ForceCompositingMode";
36 const char kGpuCompositingFieldTrialEnabledName[] = "enabled";
37 const char kGpuCompositingFieldTrialThreadEnabledName[] = "thread";
38
35 } // namespace content 39 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698