OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 extern "C" { | 5 extern "C" { |
6 #include <X11/Xlib.h> | 6 #include <X11/Xlib.h> |
7 } | 7 } |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 } | 196 } |
197 | 197 |
198 bool GLImageGLX::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 198 bool GLImageGLX::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
199 int z_order, | 199 int z_order, |
200 OverlayTransform transform, | 200 OverlayTransform transform, |
201 const Rect& bounds_rect, | 201 const Rect& bounds_rect, |
202 const RectF& crop_rect) { | 202 const RectF& crop_rect) { |
203 return false; | 203 return false; |
204 } | 204 } |
205 | 205 |
| 206 void GLImageGLX::OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd, |
| 207 uint64_t process_tracing_id, |
| 208 const std::string& dump_name) { |
| 209 // TODO(ericrk): Implement GLImage OnMemoryDump. crbug.com/514914 |
| 210 } |
| 211 |
206 } // namespace gfx | 212 } // namespace gfx |
OLD | NEW |