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

Unified Diff: content/public/common/content_switches.cc

Issue 1313533003: Fix some extern usage in .cc files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: content/public/common/content_switches.cc
diff --git a/content/public/common/content_switches.cc b/content/public/common/content_switches.cc
index f8f4ccfddf2c27b7773218b49df1ef373698d95b..2764e478bbafba0d364da8bfe2e976e41c5e542b 100644
--- a/content/public/common/content_switches.cc
+++ b/content/public/common/content_switches.cc
@@ -101,7 +101,7 @@ const char kDisableDirectNPAPIRequests[] = "disable-direct-npapi-requests";
// Disable the per-domain blocking for 3D APIs after GPU reset.
// This switch is intended only for tests.
-extern const char kDisableDomainBlockingFor3DAPIs[] =
+const char kDisableDomainBlockingFor3DAPIs[] =
"disable-domain-blocking-for-3d-apis";
// Disable experimental WebGL support.
@@ -128,8 +128,7 @@ const char kDisableGpuEarlyInit[] = "disable-gpu-early-init";
// Disable the limit on the number of times the GPU process may be restarted
// This switch is intended only for tests.
-extern const char kDisableGpuProcessCrashLimit[] =
- "disable-gpu-process-crash-limit";
+const char kDisableGpuProcessCrashLimit[] = "disable-gpu-process-crash-limit";
// Disable GPU rasterization, i.e. rasterize on the CPU only.
// Overrides the kEnableGpuRasterization and kForceGpuRasterization flags.
@@ -796,8 +795,7 @@ const char kTestType[] = "test-type";
const char kTouchTextSelectionStrategy[] = "touch-selection-strategy";
// Prioritizes the UI's command stream in the GPU process
-extern const char kUIPrioritizeInGpuProcess[] =
- "ui-prioritize-in-gpu-process";
+const char kUIPrioritizeInGpuProcess[] = "ui-prioritize-in-gpu-process";
// Bypass the media stream infobar by selecting the default device for media
// streams (e.g. WebRTC). Works with --use-fake-device-for-media-stream.
« content/public/browser/browser_main_runner.h ('K') | « content/public/browser/browser_main_runner.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698