summaryrefslogtreecommitdiff
path: root/chromium/content/public/browser/serial_chooser.h
blob: 12bfedf4af9b2e680e9ea5a8da42efd7e02404b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_PUBLIC_BROWSER_SERIAL_CHOOSER_H_
#define CONTENT_PUBLIC_BROWSER_SERIAL_CHOOSER_H_

#include "base/callback_forward.h"
#include "base/macros.h"
#include "content/common/content_export.h"
#include "services/device/public/mojom/serial.mojom-forward.h"

namespace content {

// Token representing an open serial port chooser prompt. Destroying this
// object should cancel the prompt.
class CONTENT_EXPORT SerialChooser {
 public:
  // Callback type used to report the user action. Passed |nullptr| if no port
  // was selected.
  using Callback = base::OnceCallback<void(device::mojom::SerialPortInfoPtr)>;

  SerialChooser();
  virtual ~SerialChooser();

 private:
  DISALLOW_COPY_AND_ASSIGN(SerialChooser);
};

}  // namespace content

#endif  // CONTENT_PUBLIC_BROWSER_SERIAL_CHOOSER_H_