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

Unified Diff: content/browser/gpu/gpu_process_host.cc

Issue 11779015: content: Fix typo from r175076 causing GL_CHROMIUM_texture_from_image not to work correctly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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: content/browser/gpu/gpu_process_host.cc
diff --git a/content/browser/gpu/gpu_process_host.cc b/content/browser/gpu/gpu_process_host.cc
index cb2c9f54fbbbefe7f700956dbba48e78ff9ccaab..d6e6632f053c96eb3160cc2bd853b7c0062938d9 100644
--- a/content/browser/gpu/gpu_process_host.cc
+++ b/content/browser/gpu/gpu_process_host.cc
@@ -688,7 +688,7 @@ void GpuProcessHost::OnDestroyCommandBuffer(int32 surface_id) {
void GpuProcessHost::OnImageCreated(const gfx::Size size) {
TRACE_EVENT0("gpu", "GpuProcessHost::OnImageCreated");
- if (!create_image_requests_.empty())
+ if (create_image_requests_.empty())
return;
CreateImageCallback callback = create_image_requests_.front();
« 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