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

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

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
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 // 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/file_path.h" 12 #include "base/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 FilePath::CharType kAppCacheDirname[]; 19 CONTENT_EXPORT extern const 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 FilePath::CharType kPepperDataDirname[]; 22 CONTENT_EXPORT extern const FilePath::CharType kPepperDataDirname[];
23 23
24 // The MIME type used for the browser plugin. 24 // The MIME type used for the browser plugin.
25 CONTENT_EXPORT extern const char kBrowserPluginMimeType[]; 25 CONTENT_EXPORT extern const char kBrowserPluginMimeType[];
26 // TODO(fsamuel): Remove this once upstreaming of the new browser plugin is
27 // complete.
28 CONTENT_EXPORT extern const char kBrowserPluginNewMimeType[];
29 26
30 CONTENT_EXPORT extern const size_t kMaxRendererProcessCount; 27 CONTENT_EXPORT extern const size_t kMaxRendererProcessCount;
31 28
32 // The maximum number of session history entries per tab. 29 // The maximum number of session history entries per tab.
33 extern const int kMaxSessionHistoryEntries; 30 extern const int kMaxSessionHistoryEntries;
34 31
35 // The maximum number of characters of the document's title that we're willing 32 // The maximum number of characters of the document's title that we're willing
36 // to accept in the browser process. 33 // to accept in the browser process.
37 extern const size_t kMaxTitleChars; 34 extern const size_t kMaxTitleChars;
38 35
(...skipping 22 matching lines...) Expand all
61 kGpuCompositingFieldTrialForceCompositingEnabledName[]; 58 kGpuCompositingFieldTrialForceCompositingEnabledName[];
62 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[]; 59 CONTENT_EXPORT extern const char kGpuCompositingFieldTrialThreadEnabledName[];
63 60
64 CONTENT_EXPORT extern const char kStage3DFieldTrialName[]; 61 CONTENT_EXPORT extern const char kStage3DFieldTrialName[];
65 CONTENT_EXPORT extern const char kStage3DFieldTrialBlacklistedName[]; 62 CONTENT_EXPORT extern const char kStage3DFieldTrialBlacklistedName[];
66 CONTENT_EXPORT extern const char kStage3DFieldTrialEnabledName[]; 63 CONTENT_EXPORT extern const char kStage3DFieldTrialEnabledName[];
67 64
68 } // namespace content 65 } // namespace content
69 66
70 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_ 67 #endif // CONTENT_PUBLIC_COMMON_CONTENT_CONSTANTS_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.cc ('k') | content/public/common/content_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698