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

Unified Diff: chromecast/browser/cast_browser_main_parts.cc

Issue 693953002: Specify --ui-disable-partial-swap in the internal command Lines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698