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

Unified Diff: content/browser/android/synchronous_compositor_browser_filter.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
Index: content/browser/android/synchronous_compositor_browser_filter.cc
diff --git a/content/browser/android/synchronous_compositor_browser_filter.cc b/content/browser/android/synchronous_compositor_browser_filter.cc
index d1a7b9f9c9873fd7c0e646256f5d12e43d0be213..4551bd2f7f1a98bee55e6899b1cece83b3088768 100644
--- a/content/browser/android/synchronous_compositor_browser_filter.cc
+++ b/content/browser/android/synchronous_compositor_browser_filter.cc
@@ -85,7 +85,7 @@ bool SynchronousCompositorBrowserFilter::ReceiveFrame(
frame_ptr->frame.reset(new cc::CompositorFrame);
*frame_ptr->frame = std::move(compositor_frame);
}
- future->setFrame(std::move(frame_ptr));
+ future->SetFrame(std::move(frame_ptr));
// TODO(boliu): Post metadata back to UI thread.
return true;
}
@@ -96,7 +96,7 @@ void SynchronousCompositorBrowserFilter::SetFrameFuture(
DCHECK(frame_future);
base::AutoLock lock(future_map_lock_);
if (!filter_ready_) {
- frame_future->setFrame(nullptr);
+ frame_future->SetFrame(nullptr);
return;
}
@@ -133,7 +133,7 @@ void SynchronousCompositorBrowserFilter::SignalAllFutures() {
base::AutoLock lock(future_map_lock_);
for (auto& pair : future_map_) {
for (auto& future_ptr : pair.second) {
- future_ptr->setFrame(nullptr);
+ future_ptr->SetFrame(nullptr);
}
}
future_map_.clear();
« no previous file with comments | « android_webview/browser/render_thread_manager.cc ('k') | content/browser/android/synchronous_compositor_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698