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

Unified Diff: content/common/gpu/media/rendering_helper.cc

Issue 235043005: x11: Remove X11 message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 8 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 | « content/browser/power_save_blocker_x11.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/rendering_helper.cc
diff --git a/content/common/gpu/media/rendering_helper.cc b/content/common/gpu/media/rendering_helper.cc
index ae1549b85cc49533d54c16d3c60072f5dcb68bf4..76d29d1a1ea0a00e8d86f8438e4ab98c9fc9c05d 100644
--- a/content/common/gpu/media/rendering_helper.cc
+++ b/content/common/gpu/media/rendering_helper.cc
@@ -14,6 +14,10 @@
#include "ui/gl/gl_implementation.h"
#include "ui/gl/gl_surface.h"
+#if defined(USE_X11)
+#include "ui/gfx/x/x11_types.h"
+#endif
+
#ifdef GL_VARIANT_GLX
typedef GLXWindow NativeWindowType;
struct XFreeDeleter {
@@ -112,7 +116,7 @@ void RenderingHelper::Initialize(const RenderingHelperParams& params,
CHECK_GT(params.num_windows, 0);
#if GL_VARIANT_GLX
- x_display_ = base::MessagePumpForUI::GetDefaultXDisplay();
+ x_display_ = gfx::GetXDisplay();
CHECK(x_display_);
CHECK(glXQueryVersion(x_display_, NULL, NULL));
const int fbconfig_attr[] = {
@@ -144,7 +148,7 @@ void RenderingHelper::Initialize(const RenderingHelperParams& params,
#if defined(OS_WIN)
native_display = EGL_DEFAULT_DISPLAY;
#else
- x_display_ = base::MessagePumpForUI::GetDefaultXDisplay();
+ x_display_ = gfx::GetXDisplay();
CHECK(x_display_);
native_display = x_display_;
#endif
« no previous file with comments | « content/browser/power_save_blocker_x11.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698