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

Unified Diff: content/public/browser/android/synchronous_compositor.cc

Issue 2455763002: sync compositor: Remove camel casing (Closed)
Patch Set: Created 4 years, 2 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 | « content/public/browser/android/synchronous_compositor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/android/synchronous_compositor.cc
diff --git a/content/public/browser/android/synchronous_compositor.cc b/content/public/browser/android/synchronous_compositor.cc
index fbdc5b23e1cc4b4a7199c6872d3464e02560b3bb..2b9f39b4b7ffb6b36321752216acbb3ce762502b 100644
--- a/content/public/browser/android/synchronous_compositor.cc
+++ b/content/public/browser/android/synchronous_compositor.cc
@@ -24,14 +24,14 @@ SynchronousCompositor::FrameFuture::FrameFuture()
SynchronousCompositor::FrameFuture::~FrameFuture() {}
-void SynchronousCompositor::FrameFuture::setFrame(
+void SynchronousCompositor::FrameFuture::SetFrame(
std::unique_ptr<Frame> frame) {
frame_ = std::move(frame);
waitable_event_.Signal();
}
std::unique_ptr<SynchronousCompositor::Frame>
-SynchronousCompositor::FrameFuture::getFrame() {
+SynchronousCompositor::FrameFuture::GetFrame() {
#if DCHECK_IS_ON()
DCHECK(!waited_);
waited_ = true;
« no previous file with comments | « content/public/browser/android/synchronous_compositor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698