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

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

Issue 227493006: Revert 262175 "* Replace "read" method with onReceiveXxx events." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 6 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 side-by-side diff with in-line comments
Download patch
Index: trunk/src/device/bluetooth/test/mock_bluetooth_socket.h
===================================================================
--- trunk/src/device/bluetooth/test/mock_bluetooth_socket.h (revision 262179)
+++ trunk/src/device/bluetooth/test/mock_bluetooth_socket.h (working copy)
@@ -8,25 +8,23 @@
#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_METHOD0(Close, void());
- 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));
+ MOCK_METHOD1(Receive, bool(net::GrowableIOBuffer*));
+ MOCK_METHOD1(Send, bool(net::DrainableIOBuffer*));
+ MOCK_CONST_METHOD0(GetLastErrorMessage, std::string());
protected:
virtual ~MockBluetoothSocket();
« no previous file with comments | « trunk/src/device/bluetooth/test/mock_bluetooth_device.h ('k') | trunk/src/extensions/browser/api/api_resource_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698