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

Side by Side Diff: device/hid/hid_connection_win.h

Issue 1107433002: Update {virtual,override} to follow C++11 style in device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sync and git cl format Created 5 years, 8 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
OLDNEW
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_HID_HID_CONNECTION_WIN_H_ 5 #ifndef DEVICE_HID_HID_CONNECTION_WIN_H_
6 #define DEVICE_HID_HID_CONNECTION_WIN_H_ 6 #define DEVICE_HID_HID_CONNECTION_WIN_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include <set> 10 #include <set>
11 11
12 #include "base/win/scoped_handle.h" 12 #include "base/win/scoped_handle.h"
13 #include "device/hid/hid_connection.h" 13 #include "device/hid/hid_connection.h"
14 14
15 namespace device { 15 namespace device {
16 16
17 struct PendingHidTransfer; 17 struct PendingHidTransfer;
18 18
19 class HidConnectionWin : public HidConnection { 19 class HidConnectionWin : public HidConnection {
20 public: 20 public:
21 HidConnectionWin(scoped_refptr<HidDeviceInfo> device_info, 21 HidConnectionWin(scoped_refptr<HidDeviceInfo> device_info,
22 base::win::ScopedHandle file); 22 base::win::ScopedHandle file);
23 23
24 private: 24 private:
25 friend class HidServiceWin; 25 friend class HidServiceWin;
26 friend struct PendingHidTransfer; 26 friend struct PendingHidTransfer;
27 27
28 ~HidConnectionWin(); 28 ~HidConnectionWin() override;
29 29
30 // HidConnection implementation. 30 // HidConnection implementation.
31 virtual void PlatformClose() override; 31 void PlatformClose() override;
32 virtual void PlatformRead(const ReadCallback& callback) override; 32 void PlatformRead(const ReadCallback& callback) override;
33 virtual void PlatformWrite(scoped_refptr<net::IOBuffer> buffer, 33 void PlatformWrite(scoped_refptr<net::IOBuffer> buffer,
34 size_t size, 34 size_t size,
35 const WriteCallback& callback) override; 35 const WriteCallback& callback) override;
36 virtual void PlatformGetFeatureReport(uint8_t report_id, 36 void PlatformGetFeatureReport(uint8_t report_id,
37 const ReadCallback& callback) override; 37 const ReadCallback& callback) override;
38 virtual void PlatformSendFeatureReport( 38 void PlatformSendFeatureReport(scoped_refptr<net::IOBuffer> buffer,
39 scoped_refptr<net::IOBuffer> buffer, 39 size_t size,
40 size_t size, 40 const WriteCallback& callback) override;
41 const WriteCallback& callback) override;
42 41
43 void OnReadComplete(scoped_refptr<net::IOBuffer> buffer, 42 void OnReadComplete(scoped_refptr<net::IOBuffer> buffer,
44 const ReadCallback& callback, 43 const ReadCallback& callback,
45 PendingHidTransfer* transfer, 44 PendingHidTransfer* transfer,
46 bool signaled); 45 bool signaled);
47 void OnReadFeatureComplete(scoped_refptr<net::IOBuffer> buffer, 46 void OnReadFeatureComplete(scoped_refptr<net::IOBuffer> buffer,
48 const ReadCallback& callback, 47 const ReadCallback& callback,
49 PendingHidTransfer* transfer, 48 PendingHidTransfer* transfer,
50 bool signaled); 49 bool signaled);
51 void OnWriteComplete(const WriteCallback& callback, 50 void OnWriteComplete(const WriteCallback& callback,
52 PendingHidTransfer* transfer, 51 PendingHidTransfer* transfer,
53 bool signaled); 52 bool signaled);
54 53
55 base::win::ScopedHandle file_; 54 base::win::ScopedHandle file_;
56 55
57 std::set<scoped_refptr<PendingHidTransfer> > transfers_; 56 std::set<scoped_refptr<PendingHidTransfer> > transfers_;
58 57
59 DISALLOW_COPY_AND_ASSIGN(HidConnectionWin); 58 DISALLOW_COPY_AND_ASSIGN(HidConnectionWin);
60 }; 59 };
61 60
62 } // namespace device 61 } // namespace device
63 62
64 #endif // DEVICE_HID_HID_CONNECTION_WIN_H_ 63 #endif // DEVICE_HID_HID_CONNECTION_WIN_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_task_manager_win_unittest.cc ('k') | device/hid/hid_connection_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698