2012-07-30 21:59:05 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2014-02-14 22:41:07 +00:00
|
|
|
#include "ICameraControl.h"
|
2013-05-10 06:25:25 +00:00
|
|
|
|
|
|
|
using namespace mozilla;
|
|
|
|
|
2014-02-14 22:41:07 +00:00
|
|
|
// From ICameraControl.
|
2013-05-02 11:59:58 +00:00
|
|
|
nsresult
|
2014-02-14 22:41:07 +00:00
|
|
|
ICameraControl::GetNumberOfCameras(int32_t& aDeviceCount)
|
2013-05-02 11:59:58 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
};
|
|
|
|
|
|
|
|
nsresult
|
2014-02-14 22:41:07 +00:00
|
|
|
ICameraControl::GetCameraName(uint32_t aDeviceNum, nsCString& aDeviceName)
|
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
ICameraControl::GetListOfCameras(nsTArray<nsString>& aList)
|
2013-05-02 11:59:58 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
|
|
|
}
|
2012-07-30 21:59:05 +00:00
|
|
|
|
2014-02-14 22:41:07 +00:00
|
|
|
already_AddRefed<ICameraControl>
|
2014-02-20 04:18:52 +00:00
|
|
|
ICameraControl::Create(uint32_t aCameraId)
|
2013-05-10 06:25:25 +00:00
|
|
|
{
|
2014-02-14 22:41:07 +00:00
|
|
|
return nullptr;
|
2013-05-10 06:25:25 +00:00
|
|
|
}
|