Try backing SkPicture with SkRecord in Chromium.
[chromium-blink-merge.git] / device / serial / serial_device_enumerator.h
blob77e2ae5d6c85dd846af4afb26a022fccf77195aa
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef DEVICE_SERIAL_SERIAL_DEVICE_ENUMERATOR_H_
6 #define DEVICE_SERIAL_SERIAL_DEVICE_ENUMERATOR_H_
8 #include "base/memory/scoped_ptr.h"
9 #include "device/serial/serial.mojom.h"
10 #include "mojo/public/cpp/bindings/array.h"
12 namespace device {
14 // Discovers and enumerates serial devices available to the host.
15 class SerialDeviceEnumerator {
16 public:
17 static scoped_ptr<SerialDeviceEnumerator> Create();
19 SerialDeviceEnumerator();
20 virtual ~SerialDeviceEnumerator();
22 virtual mojo::Array<serial::DeviceInfoPtr> GetDevices() = 0;
25 } // namespace device
27 #endif // DEVICE_SERIAL_SERIAL_DEVICE_ENUMERATOR_H_