| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_
H_ | 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_ | 6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTORY_
H_ |
| 7 | 7 |
| 8 #include "content/public/browser/bluetooth_chooser.h" | 8 #include "content/public/browser/bluetooth_chooser.h" |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "content/public/browser/bluetooth_chooser.h" | 14 #include "content/public/browser/bluetooth_chooser.h" |
| 15 | 15 |
| 16 namespace url { | 16 namespace url { |
| 17 class Origin; | 17 class Origin; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace content { | 20 namespace content { |
| 21 | 21 |
| 22 class WebContents; | 22 class RenderFrameHost; |
| 23 | 23 |
| 24 class LayoutTestBluetoothChooserFactory { | 24 class LayoutTestBluetoothChooserFactory { |
| 25 public: | 25 public: |
| 26 LayoutTestBluetoothChooserFactory(); | 26 LayoutTestBluetoothChooserFactory(); |
| 27 ~LayoutTestBluetoothChooserFactory(); | 27 ~LayoutTestBluetoothChooserFactory(); |
| 28 | 28 |
| 29 scoped_ptr<BluetoothChooser> RunBluetoothChooser( | 29 scoped_ptr<BluetoothChooser> RunBluetoothChooser( |
| 30 WebContents* web_contents, | 30 RenderFrameHost* frame, |
| 31 const BluetoothChooser::EventHandler& event_handler, | 31 const BluetoothChooser::EventHandler& event_handler); |
| 32 const url::Origin& origin); | |
| 33 | 32 |
| 34 std::vector<std::string> GetAndResetEvents(); | 33 std::vector<std::string> GetAndResetEvents(); |
| 35 | 34 |
| 36 void SendEvent(BluetoothChooser::Event event, const std::string& device_id); | 35 void SendEvent(BluetoothChooser::Event event, const std::string& device_id); |
| 37 | 36 |
| 38 private: | 37 private: |
| 39 class Chooser; | 38 class Chooser; |
| 40 | 39 |
| 41 std::vector<std::string> events_; | 40 std::vector<std::string> events_; |
| 42 | 41 |
| 43 // Contains the set of live choosers, in order to send them events. | 42 // Contains the set of live choosers, in order to send them events. |
| 44 std::set<Chooser*> choosers_; | 43 std::set<Chooser*> choosers_; |
| 45 | 44 |
| 46 base::WeakPtrFactory<LayoutTestBluetoothChooserFactory> weak_this_; | 45 base::WeakPtrFactory<LayoutTestBluetoothChooserFactory> weak_this_; |
| 47 }; | 46 }; |
| 48 | 47 |
| 49 } // namespace content | 48 } // namespace content |
| 50 | 49 |
| 51 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTO
RY_H_ | 50 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_BLUETOOTH_CHOOSER_FACTO
RY_H_ |
| OLD | NEW |