Content settings: remove some plugin-related code/resources when... there are no...
[chromium-blink-merge.git] / content / public / browser / bluetooth_chooser.h
blob6975a5a25ed8ebbf952ac7f94ed4a99b7ef1c544
1 // Copyright 2015 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 CONTENT_PUBLIC_BROWSER_BLUETOOTH_CHOOSER_H_
6 #define CONTENT_PUBLIC_BROWSER_BLUETOOTH_CHOOSER_H_
8 #include <string>
10 #include "base/callback.h"
11 #include "base/strings/string16.h"
12 #include "content/common/content_export.h"
14 namespace content {
16 // Represents a way to ask the user to select a Bluetooth device from a list of
17 // options.
18 class CONTENT_EXPORT BluetoothChooser {
19 public:
20 enum class Event {
21 // The user cancelled the chooser instead of selecting a device.
22 CANCELLED,
23 // The user selected device |opt_device_id|.
24 SELECTED,
25 // The user asked for a new Bluetooth discovery session to start.
26 RESCAN,
27 // Show overview page for Bluetooth.
28 SHOW_OVERVIEW_HELP,
29 // Show help page explaining what Bluetooth pairing means.
30 SHOW_PAIRING_HELP,
31 // Show help page explaining why scanning failed because Bluetooth is off.
32 SHOW_ADAPTER_OFF_HELP,
34 // As the dialog implementations grow more user-visible buttons and knobs,
35 // we'll add enumerators here to support them.
38 // Chooser implementations are constructed with an |EventHandler| and report
39 // user interaction with the chooser through it. |opt_device_id| is an empty
40 // string except for Event::SELECTED.
42 // The EventHandler won't be called after the chooser object is destroyed.
44 // After the EventHandler is called with Event::CANCELLED or Event::SELECTED,
45 // it won't be called again, and users must not call any more BluetoothChooser
46 // methods.
47 typedef base::Callback<void(Event, const std::string& opt_device_id)>
48 EventHandler;
50 BluetoothChooser() {}
51 virtual ~BluetoothChooser();
53 // Lets the chooser tell the user the state of the Bluetooth adapter. This
54 // defaults to POWERED_ON.
55 enum class AdapterPresence { ABSENT, POWERED_OFF, POWERED_ON };
56 virtual void SetAdapterPresence(AdapterPresence presence) {}
58 // Lets the chooser tell the user whether discovery is happening. This
59 // defaults to DISCOVERING.
60 enum class DiscoveryState { FAILED_TO_START, DISCOVERING, IDLE };
61 virtual void ShowDiscoveryState(DiscoveryState state) {}
63 // Shows a new device in the chooser.
64 virtual void AddDevice(const std::string& device_id,
65 const base::string16& device_name) {}
67 // Tells the chooser that a device is no longer available. The chooser should
68 // not call DeviceSelected() for a device that's been removed.
69 virtual void RemoveDevice(const std::string& device_id) {}
72 } // namespace content
74 #endif // CONTENT_PUBLIC_BROWSER_BLUETOOTH_CHOOSER_H_