michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: * You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #include "ICameraControl.h" michael@0: michael@0: using namespace mozilla; michael@0: michael@0: // From ICameraControl. michael@0: nsresult michael@0: ICameraControl::GetNumberOfCameras(int32_t& aDeviceCount) michael@0: { michael@0: return NS_ERROR_NOT_IMPLEMENTED; michael@0: }; michael@0: michael@0: nsresult michael@0: ICameraControl::GetCameraName(uint32_t aDeviceNum, nsCString& aDeviceName) michael@0: { michael@0: return NS_ERROR_NOT_IMPLEMENTED; michael@0: } michael@0: michael@0: nsresult michael@0: ICameraControl::GetListOfCameras(nsTArray& aList) michael@0: { michael@0: return NS_ERROR_NOT_IMPLEMENTED; michael@0: } michael@0: michael@0: already_AddRefed michael@0: ICameraControl::Create(uint32_t aCameraId) michael@0: { michael@0: return nullptr; michael@0: }