// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CC_RESOURCES_CROSS_THREAD_SHARED_BITMAP_H_ #define CC_RESOURCES_CROSS_THREAD_SHARED_BITMAP_H_ #include "base/memory/read_only_shared_memory_region.h" #include "base/memory/ref_counted.h" #include "base/memory/shared_memory_mapping.h" #include "cc/cc_export.h" #include "components/viz/common/resources/shared_bitmap.h" #include "components/viz/common/resources/shared_image_format.h" #include "ui/gfx/geometry/size.h" namespace cc { // This class holds ownership of a base::ReadOnlySharedMemoryRegion and its // base::WritableSharedMemoryMapping for use as a composited resource, and is // refcounted in order to share ownership with the LayerTreeHost, via // TextureLayer, which needs access to the base::ReadOnlySharedMemory from // the compositor thread. Because all the fields exposed are const, they can // be used from any thread without conflict, as they only read existing states. class CC_EXPORT CrossThreadSharedBitmap : public base::RefCountedThreadSafe<CrossThreadSharedBitmap> { … }; } // namespace cc #endif // CC_RESOURCES_CROSS_THREAD_SHARED_BITMAP_H_