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_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_H_
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_H_
8 #include "content/public/browser/bluetooth_chooser.h"
13 #include "base/memory/weak_ptr.h"
14 #include "content/public/browser/bluetooth_chooser.h"
22 class LayoutTestBluetoothChooserFactory
{
24 LayoutTestBluetoothChooserFactory();
25 ~LayoutTestBluetoothChooserFactory();
27 scoped_ptr
<BluetoothChooser
> RunBluetoothChooser(
28 WebContents
* web_contents
,
29 const BluetoothChooser::EventHandler
& event_handler
,
32 std::vector
<std::string
> GetAndResetEvents();
34 void SendEvent(BluetoothChooser::Event event
, const std::string
& device_id
);
39 std::vector
<std::string
> events_
;
41 // Contains the set of live choosers, in order to send them events.
42 std::set
<Chooser
*> choosers_
;
44 base::WeakPtrFactory
<LayoutTestBluetoothChooserFactory
> weak_this_
;
47 } // namespace content
49 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_H_