blob: 09d619e2a070561a3cd1742efa9c9867d1b29595 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/socket/socket.h"
#include "net/base/net_errors.h"
namespace net {
int Socket::ReadIfReady(IOBuffer* buf,
int buf_len,
CompletionOnceCallback callback) {
return ERR_READ_IF_READY_NOT_IMPLEMENTED;
}
int Socket::CancelReadIfReady() {
return ERR_READ_IF_READY_NOT_IMPLEMENTED;
}
} // namespace net
|