41 lines
864 B
C
41 lines
864 B
C
|
/*
|
||
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
#include <react/core/ReactPrimitives.h>
|
||
|
#include <react/imagemanager/ImageRequest.h>
|
||
|
#include <react/imagemanager/primitives.h>
|
||
|
#include <react/utils/ContextContainer.h>
|
||
|
|
||
|
namespace facebook {
|
||
|
namespace react {
|
||
|
|
||
|
class ImageManager;
|
||
|
|
||
|
using SharedImageManager = std::shared_ptr<ImageManager>;
|
||
|
|
||
|
/*
|
||
|
* Cross platform facade for iOS-specific RCTImageManager.
|
||
|
*/
|
||
|
class ImageManager {
|
||
|
public:
|
||
|
ImageManager(ContextContainer::Shared const &contextContainer);
|
||
|
~ImageManager();
|
||
|
|
||
|
ImageRequest requestImage(const ImageSource &imageSource, SurfaceId surfaceId)
|
||
|
const;
|
||
|
|
||
|
private:
|
||
|
void *self_;
|
||
|
};
|
||
|
|
||
|
} // namespace react
|
||
|
} // namespace facebook
|