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

Unified Diff: device/bluetooth/test/mock_bluetooth_socket.h

Issue 180163009: chrome.bluetooth API improvements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address code review feedback, simplify threading model. Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: device/bluetooth/test/mock_bluetooth_socket.h
diff --git a/device/bluetooth/test/mock_bluetooth_socket.h b/device/bluetooth/test/mock_bluetooth_socket.h
index 8b5e1426aa77a005e47b8ad72e73707a0bb008c4..e8344647ab02d595fe976e78983abf9813830ebd 100644
--- a/device/bluetooth/test/mock_bluetooth_socket.h
+++ b/device/bluetooth/test/mock_bluetooth_socket.h
@@ -8,23 +8,28 @@
#include <string>
#include "device/bluetooth/bluetooth_socket.h"
+#include "net/base/io_buffer.h"
#include "testing/gmock/include/gmock/gmock.h"
-namespace net {
-
-class DrainableIOBuffer;
-class GrowableIOBuffer;
-
-} // namespace net
-
namespace device {
class MockBluetoothSocket : public BluetoothSocket {
public:
MockBluetoothSocket();
- MOCK_METHOD1(Receive, bool(net::GrowableIOBuffer*));
- MOCK_METHOD1(Send, bool(net::DrainableIOBuffer*));
- MOCK_CONST_METHOD0(GetLastErrorMessage, std::string());
+ MOCK_METHOD0(Destruct, void());
+ MOCK_METHOD2(Connect,
+ void(const base::Closure& success_callback,
+ const ErrorCompletionCallback& error_callback));
keybuk 2014/03/27 20:20:07 There is no Connect, there is only ...
+ MOCK_METHOD1(Disconnect, void(const base::Closure& callback));
+ MOCK_METHOD3(Receive,
+ void(int count,
+ const ReceiveCompletionCallback& success_callback,
+ const ReceiveErrorCompletionCallback& error_callback));
+ MOCK_METHOD4(Send,
+ void(scoped_refptr<net::IOBuffer> buffer,
+ int buffer_size,
+ const SendCompletionCallback& success_callback,
+ const ErrorCompletionCallback& error_callback));
protected:
virtual ~MockBluetoothSocket();

Powered by Google App Engine
This is Rietveld 408576698