зеркало из https://github.com/mozilla/gecko-dev.git
48 строки
1.4 KiB
C++
48 строки
1.4 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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/. */
|
|
|
|
#include "FakeInputPortService.h"
|
|
#include "InputPortListeners.h"
|
|
#include "InputPortServiceFactory.h"
|
|
#include "mozilla/Preferences.h"
|
|
#include "nsIInputPortService.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
/* static */ already_AddRefed<FakeInputPortService>
|
|
InputPortServiceFactory::CreateFakeInputPortService()
|
|
{
|
|
RefPtr<FakeInputPortService> service = new FakeInputPortService();
|
|
return service.forget();
|
|
}
|
|
|
|
/* static */ already_AddRefed<nsIInputPortService>
|
|
InputPortServiceFactory::AutoCreateInputPortService()
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIInputPortService> service =
|
|
do_GetService(INPUTPORT_SERVICE_CONTRACTID);
|
|
if (!service) {
|
|
// Fallback to the fake service.
|
|
service = do_GetService(FAKE_INPUTPORT_SERVICE_CONTRACTID, &rv);
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return nullptr;
|
|
}
|
|
}
|
|
MOZ_ASSERT(service);
|
|
rv = service->SetInputPortListener(new InputPortListener());
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
return nullptr;
|
|
}
|
|
|
|
return service.forget();
|
|
}
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|