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

Unified Diff: components/exo/compositor_frame_sink.cc

Issue 2661543002: Rename LocalFrameId to LocalSurfaceId (Closed)
Patch Set: c Created 3 years, 11 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
« no previous file with comments | « components/exo/compositor_frame_sink.h ('k') | components/exo/compositor_frame_sink_holder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/exo/compositor_frame_sink.cc
diff --git a/components/exo/compositor_frame_sink.cc b/components/exo/compositor_frame_sink.cc
index c49758a40667eb45d6afb09dccdbd76803fbb5ef..59a3ea4acb67a0ea7ba671f23b5f48a68ea7425a 100644
--- a/components/exo/compositor_frame_sink.cc
+++ b/components/exo/compositor_frame_sink.cc
@@ -31,18 +31,18 @@ void CompositorFrameSink::SetNeedsBeginFrame(bool needs_begin_frame) {
}
void CompositorFrameSink::SubmitCompositorFrame(
- const cc::LocalFrameId& local_frame_id,
+ const cc::LocalSurfaceId& local_surface_id,
cc::CompositorFrame frame) {
- support_.SubmitCompositorFrame(local_frame_id, std::move(frame));
+ support_.SubmitCompositorFrame(local_surface_id, std::move(frame));
}
void CompositorFrameSink::EvictFrame() {
support_.EvictFrame();
}
-void CompositorFrameSink::Require(const cc::LocalFrameId& local_frame_id,
+void CompositorFrameSink::Require(const cc::LocalSurfaceId& local_surface_id,
const cc::SurfaceSequence& sequence) {
- support_.Require(local_frame_id, sequence);
+ support_.Require(local_surface_id, sequence);
}
void CompositorFrameSink::Satisfy(const cc::SurfaceSequence& sequence) {
« no previous file with comments | « components/exo/compositor_frame_sink.h ('k') | components/exo/compositor_frame_sink_holder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698