mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-15 23:03:58 +08:00
Summary: This diff adds support for image views in Android Reviewed By: shergin Differential Revision: D9757712 fbshipit-source-id: 8d33e04c8ac4a670af6ca49bb3b9dccc69d52e40
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
|