Chromium Code Reviews| 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..c87a1fb741ec9ae223861028a6bed37066526137 |
| --- /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/27 23:29:40
this comment isn't correct
DaveMoore
2014/09/28 05:05:29
Done.
|
| +// dlls. |
| +const char kEnableGPUClientLogging[] = "enable-gpu-client-logging"; |
| + |
| +} // namespace switches |