Index: gpu/command_buffer/client/gpu_switches.cc |
diff --git a/gpu/command_buffer/client/gpu_switches.cc b/gpu/command_buffer/client/gpu_switches.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..568e94507719481dbd46a4d8606526509b1a1ef2 |
--- /dev/null |
+++ b/gpu/command_buffer/client/gpu_switches.cc |
@@ -0,0 +1,15 @@ |
+// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "gpu/command_buffer/client/gpu_switches.h" |
+#include "base/basictypes.h" |
+ |
+namespace switches { |
+ |
+// Enable GPU client logging. Note: This is the same switch as the one in |
+// gl_switches.cc. It's defined here again to avoid dependencies between |
jamesr
2014/09/26 19:14:25
can't you delete the version in gl_switches? you d
DaveMoore
2014/09/26 20:10:16
That version is used by render_process_host_impl.c
DaveMoore
2014/09/26 22:31:08
Done.
|
+// dlls. |
+const char kEnableGPUClientLoggingGPU[] = "enable-gpu-client-logging"; |
+ |
+} // namespace switches |