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

Side by Side Diff: ui/gl/gl_image_egl.cc

Issue 1299713003: GLImage::OnMemoryDump Stubs + Some Impls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@images1.3
Patch Set: Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_egl.h" 5 #include "ui/gl/gl_image_egl.h"
6 6
7 #include "ui/gl/egl_util.h" 7 #include "ui/gl/egl_util.h"
8 #include "ui/gl/gl_surface_egl.h" 8 #include "ui/gl/gl_surface_egl.h"
9 9
10 namespace gfx { 10 namespace gfx {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 } 68 }
69 69
70 bool GLImageEGL::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, 70 bool GLImageEGL::ScheduleOverlayPlane(gfx::AcceleratedWidget widget,
71 int z_order, 71 int z_order,
72 OverlayTransform transform, 72 OverlayTransform transform,
73 const Rect& bounds_rect, 73 const Rect& bounds_rect,
74 const RectF& crop_rect) { 74 const RectF& crop_rect) {
75 return false; 75 return false;
76 } 76 }
77 77
78 void GLImageEGL::OnMemoryDump(base::trace_event::ProcessMemoryDump* pmd,
79 uint64_t process_tracing_id,
80 const std::string& dump_name) {
81 // TODO(ericrk): Implement GLImage OnMemoryDump. crbug.com/514914
82 }
83
78 } // namespace gfx 84 } // namespace gfx
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698