Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: device/serial/serial_service_impl.h

Issue 646053002: Implement permission_broker for serial devices. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix device_unittests. Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « device/serial/serial_io_handler_win.cc ('k') | device/serial/serial_service_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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 DEVICE_SERIAL_SERIAL_SERVICE_IMPL_H_ 5 #ifndef DEVICE_SERIAL_SERIAL_SERVICE_IMPL_H_
6 #define DEVICE_SERIAL_SERIAL_SERVICE_IMPL_H_ 6 #define DEVICE_SERIAL_SERIAL_SERVICE_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "device/serial/data_stream.mojom.h" 10 #include "device/serial/data_stream.mojom.h"
11 #include "device/serial/serial.mojom.h" 11 #include "device/serial/serial.mojom.h"
12 #include "device/serial/serial_connection_factory.h" 12 #include "device/serial/serial_connection_factory.h"
13 #include "device/serial/serial_device_enumerator.h" 13 #include "device/serial/serial_device_enumerator.h"
14 #include "mojo/public/cpp/bindings/interface_impl.h" 14 #include "mojo/public/cpp/bindings/interface_impl.h"
15 15
16 namespace device { 16 namespace device {
17 17
18 class SerialServiceImpl : public mojo::InterfaceImpl<serial::SerialService> { 18 class SerialServiceImpl : public mojo::InterfaceImpl<serial::SerialService> {
19 public: 19 public:
20 explicit SerialServiceImpl( 20 explicit SerialServiceImpl(
21 scoped_refptr<SerialConnectionFactory> connection_factory); 21 scoped_refptr<SerialConnectionFactory> connection_factory);
22 SerialServiceImpl(scoped_refptr<SerialConnectionFactory> connection_factory, 22 SerialServiceImpl(scoped_refptr<SerialConnectionFactory> connection_factory,
23 scoped_ptr<SerialDeviceEnumerator> device_enumerator); 23 scoped_ptr<SerialDeviceEnumerator> device_enumerator);
24 virtual ~SerialServiceImpl(); 24 virtual ~SerialServiceImpl();
25 25
26 static void Create(scoped_refptr<base::MessageLoopProxy> io_message_loop, 26 static void Create(scoped_refptr<base::MessageLoopProxy> io_message_loop,
27 scoped_refptr<base::MessageLoopProxy> ui_message_loop,
27 mojo::InterfaceRequest<serial::SerialService> request); 28 mojo::InterfaceRequest<serial::SerialService> request);
28 static void CreateOnMessageLoop( 29 static void CreateOnMessageLoop(
29 scoped_refptr<base::MessageLoopProxy> message_loop, 30 scoped_refptr<base::MessageLoopProxy> message_loop,
30 scoped_refptr<base::MessageLoopProxy> io_message_loop, 31 scoped_refptr<base::MessageLoopProxy> io_message_loop,
32 scoped_refptr<base::MessageLoopProxy> ui_message_loop,
31 mojo::InterfaceRequest<serial::SerialService> request); 33 mojo::InterfaceRequest<serial::SerialService> request);
32 34
33 // mojo::InterfaceImpl<SerialService> overrides. 35 // mojo::InterfaceImpl<SerialService> overrides.
34 virtual void GetDevices(const mojo::Callback< 36 virtual void GetDevices(const mojo::Callback<
35 void(mojo::Array<serial::DeviceInfoPtr>)>& callback) override; 37 void(mojo::Array<serial::DeviceInfoPtr>)>& callback) override;
36 virtual void Connect( 38 virtual void Connect(
37 const mojo::String& path, 39 const mojo::String& path,
38 serial::ConnectionOptionsPtr options, 40 serial::ConnectionOptionsPtr options,
39 mojo::InterfaceRequest<serial::Connection> connection_request, 41 mojo::InterfaceRequest<serial::Connection> connection_request,
40 mojo::InterfaceRequest<serial::DataSink> sink, 42 mojo::InterfaceRequest<serial::DataSink> sink,
41 mojo::InterfaceRequest<serial::DataSource> source) override; 43 mojo::InterfaceRequest<serial::DataSource> source) override;
42 44
43 private: 45 private:
44 SerialDeviceEnumerator* GetDeviceEnumerator(); 46 SerialDeviceEnumerator* GetDeviceEnumerator();
45 bool IsValidPath(const mojo::String& path); 47 bool IsValidPath(const mojo::String& path);
46 48
47 scoped_ptr<SerialDeviceEnumerator> device_enumerator_; 49 scoped_ptr<SerialDeviceEnumerator> device_enumerator_;
48 scoped_refptr<SerialConnectionFactory> connection_factory_; 50 scoped_refptr<SerialConnectionFactory> connection_factory_;
49 51
50 DISALLOW_COPY_AND_ASSIGN(SerialServiceImpl); 52 DISALLOW_COPY_AND_ASSIGN(SerialServiceImpl);
51 }; 53 };
52 54
53 } // namespace device 55 } // namespace device
54 56
55 #endif // DEVICE_SERIAL_SERIAL_SERVICE_IMPL_H_ 57 #endif // DEVICE_SERIAL_SERIAL_SERVICE_IMPL_H_
OLDNEW
« no previous file with comments | « device/serial/serial_io_handler_win.cc ('k') | device/serial/serial_service_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698