| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/gl/gl_image_surface_texture.h" | 5 #include "ui/gl/gl_image_surface_texture.h" |
| 6 | 6 |
| 7 #include "base/trace_event/trace_event.h" | 7 #include "base/trace_event/trace_event.h" |
| 8 #include "ui/gl/android/surface_texture.h" | 8 #include "ui/gl/android/surface_texture.h" |
| 9 | 9 |
| 10 namespace gl { | 10 namespace gl { |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 return false; | 98 return false; |
| 99 } | 99 } |
| 100 | 100 |
| 101 void GLImageSurfaceTexture::OnMemoryDump( | 101 void GLImageSurfaceTexture::OnMemoryDump( |
| 102 base::trace_event::ProcessMemoryDump* pmd, | 102 base::trace_event::ProcessMemoryDump* pmd, |
| 103 uint64_t process_tracing_id, | 103 uint64_t process_tracing_id, |
| 104 const std::string& dump_name) { | 104 const std::string& dump_name) { |
| 105 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 | 105 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 |
| 106 } | 106 } |
| 107 | 107 |
| 108 bool GLImageSurfaceTexture::EmulatingRGB() const { |
| 109 return false; |
| 110 } |
| 111 |
| 108 } // namespace gl | 112 } // namespace gl |
| OLD | NEW |