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

Unified Diff: app/gfx/gl/gl_context.cc

Issue 5105006: Resize synchronization for Linux. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Moved IPC call up to GpuCommandBufferStub via callback to satisfy checkdeps. Created 10 years, 1 month 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
Index: app/gfx/gl/gl_context.cc
diff --git a/app/gfx/gl/gl_context.cc b/app/gfx/gl/gl_context.cc
index a07d30af03a6df9a817c9a6d60739d28b496c326..c0d6135c36f1d9869e0cced46011f822df9a1dbb 100644
--- a/app/gfx/gl/gl_context.cc
+++ b/app/gfx/gl/gl_context.cc
@@ -13,6 +13,15 @@
namespace gfx {
+void GLContext::SetSize(gfx::Size size) {
+ if (set_size_callback_.get())
+ set_size_callback_->Run(size);
+}
+
+void GLContext::RegisterSetSizeCallback(Callback1<gfx::Size>::Type* callback) {
+ set_size_callback_.reset(callback);
+}
+
std::string GLContext::GetExtensions() {
DCHECK(IsCurrent());
return std::string(reinterpret_cast<const char*>(glGetString(GL_EXTENSIONS)));

Powered by Google App Engine
This is Rietveld 408576698