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

Unified Diff: content/common/gpu/gles2_texture_to_egl_image_translator.cc

Issue 7057027: Updated OMX decoder for recent PPAPI changes, and added to the build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased to ToT r86339 Created 9 years, 7 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
Index: content/common/gpu/gles2_texture_to_egl_image_translator.cc
diff --git a/content/gpu/gles2_texture_to_egl_image_translator.cc b/content/common/gpu/gles2_texture_to_egl_image_translator.cc
similarity index 96%
rename from content/gpu/gles2_texture_to_egl_image_translator.cc
rename to content/common/gpu/gles2_texture_to_egl_image_translator.cc
index ed303687d4450f7c1da1eb498798e1e0ae7bbd7a..487dd0b751ddfc8175bec53ff4d67acb42fb6354 100644
--- a/content/gpu/gles2_texture_to_egl_image_translator.cc
+++ b/content/common/gpu/gles2_texture_to_egl_image_translator.cc
@@ -2,7 +2,9 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "content/gpu/gles2_texture_to_egl_image_translator.h"
+#include "content/common/gpu/gles2_texture_to_egl_image_translator.h"
+
+#include "base/logging.h"
// Get EGL extension functions.
static PFNEGLCREATEIMAGEKHRPROC egl_create_image_khr =
@@ -69,5 +71,3 @@ void Gles2TextureToEglImageTranslator::DestroyEglImage(EGLImageKHR egl_image) {
}
egl_destroy_image_khr(egl_display_, egl_image);
}
-
-

Powered by Google App Engine
This is Rietveld 408576698