mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
80 lines
2.6 KiB
C++
80 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) 2013-2015 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef DOM_CAMERA_TESTGONKCAMERAHARDWARE_H
|
|
#define DOM_CAMERA_TESTGONKCAMERAHARDWARE_H
|
|
|
|
#include "GonkCameraHwMgr.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsIDOMEventListener.h"
|
|
#include "mozilla/CondVar.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class TestGonkCameraHardware : public android::GonkCameraHardware
|
|
{
|
|
#ifndef MOZ_WIDGET_GONK
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
#endif
|
|
|
|
public:
|
|
virtual nsresult Init() override;
|
|
virtual int AutoFocus() override;
|
|
virtual int CancelAutoFocus() override;
|
|
virtual int StartFaceDetection() override;
|
|
virtual int StopFaceDetection() override;
|
|
virtual int TakePicture() override;
|
|
virtual void CancelTakePicture() override;
|
|
virtual int StartPreview() override;
|
|
virtual void StopPreview() override;
|
|
virtual int PushParameters(const mozilla::GonkCameraParameters& aParams) override;
|
|
virtual nsresult PullParameters(mozilla::GonkCameraParameters& aParams) override;
|
|
virtual int StartRecording() override;
|
|
virtual int StopRecording() override;
|
|
virtual int StoreMetaDataInBuffers(bool aEnabled) override;
|
|
#ifdef MOZ_WIDGET_GONK
|
|
virtual int PushParameters(const android::CameraParameters& aParams) override;
|
|
virtual void PullParameters(android::CameraParameters& aParams) override;
|
|
#endif
|
|
|
|
TestGonkCameraHardware(mozilla::nsGonkCameraControl* aTarget,
|
|
uint32_t aCameraId,
|
|
const android::sp<android::Camera>& aCamera);
|
|
|
|
protected:
|
|
virtual ~TestGonkCameraHardware();
|
|
|
|
class ControlMessage;
|
|
class PushParametersDelegate;
|
|
class PullParametersDelegate;
|
|
|
|
nsresult WaitWhileRunningOnMainThread(RefPtr<ControlMessage> aRunnable);
|
|
|
|
nsCOMPtr<nsIDOMEventListener> mDomListener;
|
|
nsCOMPtr<nsIThread> mCameraThread;
|
|
mozilla::Mutex mMutex;
|
|
mozilla::CondVar mCondVar;
|
|
nsresult mStatus;
|
|
|
|
private:
|
|
TestGonkCameraHardware(const TestGonkCameraHardware&) = delete;
|
|
TestGonkCameraHardware& operator=(const TestGonkCameraHardware&) = delete;
|
|
};
|
|
|
|
} // namespace mozilla
|
|
|
|
#endif // DOM_CAMERA_TESTGONKCAMERAHARDWARE_H
|