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 gfx { | 10 namespace gfx { |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 } | 85 } |
86 | 86 |
87 bool GLImageSurfaceTexture::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 87 bool GLImageSurfaceTexture::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
88 int z_order, | 88 int z_order, |
89 OverlayTransform transform, | 89 OverlayTransform transform, |
90 const Rect& bounds_rect, | 90 const Rect& bounds_rect, |
91 const RectF& crop_rect) { | 91 const RectF& crop_rect) { |
92 return false; | 92 return false; |
93 } | 93 } |
94 | 94 |
| 95 void GLImageSurfaceTexture::OnMemoryDump( |
| 96 base::trace_event::ProcessMemoryDump* pmd, |
| 97 uint64_t process_tracing_id, |
| 98 const std::string& dump_name) { |
| 99 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 |
| 100 } |
| 101 |
95 } // namespace gfx | 102 } // namespace gfx |
OLD | NEW |