Chromium Code Reviews| Index: chromecast/browser/cast_browser_main_parts.cc |
| diff --git a/chromecast/browser/cast_browser_main_parts.cc b/chromecast/browser/cast_browser_main_parts.cc |
| index 55d990caeaf804278c3f19fcc8df89006d482263..c9016d01157feb5414a14f2b7378f1fe2d545e5c 100644 |
| --- a/chromecast/browser/cast_browser_main_parts.cc |
| +++ b/chromecast/browser/cast_browser_main_parts.cc |
| @@ -35,6 +35,9 @@ namespace shell { |
| namespace { |
| +// also defined in cc/base/switches.h but adding here due to checkdeps rules. |
| +const char kUIDisablePartialSwap[] = "ui-disable-partial-swap"; |
|
lcwu1
2014/10/31 17:37:31
We shouldn't define our own switch string here (as
|
| + |
| struct DefaultCommandLineSwitch { |
| const char* const switch_name; |
| const char* const switch_value; |
| @@ -56,6 +59,9 @@ DefaultCommandLineSwitch g_default_switches[] = { |
| // This is needed for now to enable the egltest Ozone platform to work with |
| // current Linux/NVidia OpenGL drivers. |
| { switches::kIgnoreGpuBlacklist, ""}, |
| + // TODO(gusfernandez): This is needed to fix a bug with |
| + // glPostSubBufferCHROMIUM (crbug: 429200) |
|
lcwu1
2014/10/31 17:37:31
The convention of specifying a crbug is crbug.com/
|
| + { kUIDisablePartialSwap, ""}, |
| #endif |
| { NULL, NULL }, // Termination |
| }; |