[go: nahoru, domu]

blob: 0baf148163f8efde0969489d5c87ba990ee74ec2 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "extensions/browser/api/usb/usb_device_resource.h"
#include <string>
#include <utility>
#include <vector>
#include "base/bind.h"
#include "base/callback_helpers.h"
#include "base/lazy_instance.h"
#include "base/synchronization/lock.h"
#include "content/public/browser/browser_thread.h"
#include "extensions/browser/api/api_resource.h"
#include "extensions/common/api/usb.h"
using content::BrowserThread;
namespace extensions {
static base::LazyInstance<BrowserContextKeyedAPIFactory<
ApiResourceManager<UsbDeviceResource>>>::DestructorAtExit g_factory =
LAZY_INSTANCE_INITIALIZER;
// static
template <>
BrowserContextKeyedAPIFactory<ApiResourceManager<UsbDeviceResource> >*
ApiResourceManager<UsbDeviceResource>::GetFactoryInstance() {
return g_factory.Pointer();
}
UsbDeviceResource::UsbDeviceResource(
const std::string& owner_extension_id,
const std::string& guid,
mojo::Remote<device::mojom::UsbDevice> device)
: ApiResource(owner_extension_id), guid_(guid), device_(std::move(device)) {
device_.set_disconnect_handler(base::BindOnce(
&UsbDeviceResource::OnConnectionError, base::Unretained(this)));
}
UsbDeviceResource::~UsbDeviceResource() {}
bool UsbDeviceResource::IsPersistent() const {
return false;
}
void UsbDeviceResource::OnConnectionError() {
device_.reset();
}
} // namespace extensions