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

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

Issue 65193003: Clear SingleProcess and InProcessGPU logic. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: WIP: diable kSingleProcess and kInProcessGPU in chrome multiple dll browser. Created 7 years, 1 month 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
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 // Defines all the "content" command-line switches. 5 // Defines all the "content" command-line switches.
6 6
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 extern const char kGpuDriverVendor[]; 182 extern const char kGpuDriverVendor[];
183 extern const char kGpuDriverVersion[]; 183 extern const char kGpuDriverVersion[];
184 extern const char kGpuLauncher[]; 184 extern const char kGpuLauncher[];
185 CONTENT_EXPORT extern const char kGpuProcess[]; 185 CONTENT_EXPORT extern const char kGpuProcess[];
186 extern const char kGpuSandboxAllowSysVShm[]; 186 extern const char kGpuSandboxAllowSysVShm[];
187 extern const char kGpuStartupDialog[]; 187 extern const char kGpuStartupDialog[];
188 extern const char kGpuVendorID[]; 188 extern const char kGpuVendorID[];
189 CONTENT_EXPORT extern const char kHostResolverRules[]; 189 CONTENT_EXPORT extern const char kHostResolverRules[];
190 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[]; 190 CONTENT_EXPORT extern const char kIgnoreCertificateErrors[];
191 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[]; 191 CONTENT_EXPORT extern const char kIgnoreGpuBlacklist[];
192 extern const char kInProcessGPU[]; 192 CONTENT_EXPORT extern const char kInProcessGPU[];
193 extern const char kInProcessPlugins[]; 193 extern const char kInProcessPlugins[];
194 CONTENT_EXPORT extern const char kJavaScriptFlags[]; 194 CONTENT_EXPORT extern const char kJavaScriptFlags[];
195 extern const char kLoadPlugin[]; 195 extern const char kLoadPlugin[];
196 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; 196 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[];
197 CONTENT_EXPORT extern const char kLoggingLevel[]; 197 CONTENT_EXPORT extern const char kLoggingLevel[];
198 CONTENT_EXPORT extern const char kLogNetLog[]; 198 CONTENT_EXPORT extern const char kLogNetLog[];
199 extern const char kLogPluginMessages[]; 199 extern const char kLogPluginMessages[];
200 extern const char kMaxUntiledLayerHeight[]; 200 extern const char kMaxUntiledLayerHeight[];
201 extern const char kMaxUntiledLayerWidth[]; 201 extern const char kMaxUntiledLayerWidth[];
202 extern const char kMemoryMetrics[]; 202 extern const char kMemoryMetrics[];
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 #if defined(OS_POSIX) 297 #if defined(OS_POSIX)
298 extern const char kChildCleanExit[]; 298 extern const char kChildCleanExit[];
299 #endif 299 #endif
300 300
301 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 301 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
302 // alphabetical order, or in one of the ifdefs (also in order in each section). 302 // alphabetical order, or in one of the ifdefs (also in order in each section).
303 303
304 } // namespace switches 304 } // namespace switches
305 305
306 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ 306 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698