mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: ImageManager is used to update the LocalData of Image views, as part of this process we call ImageManager::requestImage in cross platform code. Event if Android doesn't use ImageRequest we need to return an empty non-operation version of this object. Reviewed By: shergin Differential Revision: D10429663 fbshipit-source-id: 3621ece72f7291e2e6ab6a84b238ac16b595fc18
28 lines
566 B
C++
28 lines
566 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.
|
|
*/
|
|
|
|
#include "ImageManager.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
ImageManager::ImageManager(void *platformSpecificCounterpart) {
|
|
// Not implemented.
|
|
}
|
|
|
|
ImageManager::~ImageManager() {
|
|
// Not implemented.
|
|
}
|
|
|
|
ImageRequest ImageManager::requestImage(const ImageSource &imageSource) const {
|
|
// Not implemented.
|
|
return {};
|
|
}
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|