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

Unified Diff: content/browser/compositor/surface_utils.cc

Issue 2369793002: WIP: Propagate SurfaceID up window tree hierarchy
Patch Set: Fix input events: EventDispatcher ignores container windows Created 4 years, 3 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/compositor/surface_utils.cc
diff --git a/content/browser/compositor/surface_utils.cc b/content/browser/compositor/surface_utils.cc
index b0618e282612c36976415a88294d562f9968a4b7..902b818064d950b9ef519d8a16293447c8b29c16 100644
--- a/content/browser/compositor/surface_utils.cc
+++ b/content/browser/compositor/surface_utils.cc
@@ -159,12 +159,12 @@ void PrepareBitmapCopyOutputResult(
namespace content {
-uint32_t AllocateSurfaceClientId() {
+cc::FrameSinkId AllocateFrameSinkId() {
#if defined(OS_ANDROID)
- return ContextProviderFactoryImpl::GetInstance()->AllocateSurfaceClientId();
+ return ContextProviderFactoryImpl::GetInstance()->AllocateFrameSinkId();
#else
ImageTransportFactory* factory = ImageTransportFactory::GetInstance();
- return factory->GetContextFactory()->AllocateSurfaceClientId();
+ return factory->GetContextFactory()->AllocateFrameSinkId();
#endif
}
« no previous file with comments | « content/browser/compositor/surface_utils.h ('k') | content/browser/frame_host/cross_process_frame_connector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698