Reset the root layer on the compositor when recreating a root layer.
[chromium-blink-merge.git] / device / serial / serial_device_enumerator_win.h
blobb1a8f1606f1b3c7366dbb0fff8d8b5bd30d59f12
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_WIN_H_
6 #define DEVICE_SERIAL_SERIAL_DEVICE_ENUMERATOR_WIN_H_
8 #include "device/serial/serial_device_enumerator.h"
10 namespace device {
12 // Discovers and enumerates serial devices available to the host.
13 class SerialDeviceEnumeratorWin : public SerialDeviceEnumerator {
14 public:
15 SerialDeviceEnumeratorWin();
16 virtual ~SerialDeviceEnumeratorWin();
18 // Implementation for SerialDeviceEnumerator.
19 virtual mojo::Array<serial::DeviceInfoPtr> GetDevices() override;
21 private:
22 DISALLOW_COPY_AND_ASSIGN(SerialDeviceEnumeratorWin);
25 } // namespace device
27 #endif // DEVICE_SERIAL_SERIAL_DEVICE_ENUMERATOR_WIN_H_