Index: gpu/command_buffer/client/gpu_switches.h |
diff --git a/gpu/command_buffer/client/gpu_switches.h b/gpu/command_buffer/client/gpu_switches.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..07f98fcce7fe13956e2a21577dd062e0fe8c5bcf |
--- /dev/null |
+++ b/gpu/command_buffer/client/gpu_switches.h |
@@ -0,0 +1,19 @@ |
+// 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. |
+ |
+// Defines all the command-line switches used by gpu/command_buffer/service/. |
jamesr
2014/09/27 23:29:40
this still says "service"
DaveMoore
2014/09/28 05:05:29
Done.
|
+ |
+#ifndef GPU_COMMAND_BUFFER_CLIENT_GPU_SWITCHES_H_ |
+#define GPU_COMMAND_BUFFER_CLIENT_GPU_SWITCHES_H_ |
+ |
+#include "gpu/gpu_export.h" |
jamesr
2014/09/27 23:29:40
no. gpu_export is for things in the gpu component.
DaveMoore
2014/09/28 05:05:29
Done.
|
+ |
+namespace switches { |
+ |
+GPU_EXPORT extern const char kEnableGPUClientLogging[]; |
jamesr
2014/09/27 23:29:40
still the wrong export macro
DaveMoore
2014/09/28 05:05:29
Done.
|
+ |
+} // namespace switches |
+ |
+#endif // GPU_COMMAND_BUFFER_CLIENT_GPU_SWITCHES_H_ |
+ |