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

Unified Diff: content/browser/renderer_host/render_widget_host_view_android.cc

Issue 2136413002: Update Surface ID Terminology (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed webkit_unit_tests Created 4 years, 5 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/renderer_host/render_widget_host_view_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index 37703597428fad1fafb687a97ff174fb5ce07c12..a19684296d47d212b74f11595977d049fb0e9f4a 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -99,7 +99,7 @@ void SatisfyCallback(cc::SurfaceManager* manager,
const cc::SurfaceSequence& sequence) {
std::vector<uint32_t> sequences;
sequences.push_back(sequence.sequence);
- manager->DidSatisfySequences(sequence.id_namespace, &sequences);
+ manager->DidSatisfySequences(sequence.client_id, &sequences);
}
void RequireCallback(cc::SurfaceManager* manager,
@@ -1678,9 +1678,9 @@ void RenderWidgetHostViewAndroid::DidStopFlinging() {
content_view_core_->DidStopFlinging();
}
-uint32_t RenderWidgetHostViewAndroid::GetSurfaceIdNamespace() {
+uint32_t RenderWidgetHostViewAndroid::GetSurfaceClientId() {
if (id_allocator_)
- return id_allocator_->id_namespace();
+ return id_allocator_->client_id();
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698