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

Unified Diff: net/socket/fuzzed_socket.cc

Issue 2250263003: Move FuzzedDataProvider to //base and expose to blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: ... also remove PLATFORM_EXPORT Created 4 years, 4 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
« no previous file with comments | « net/socket/fuzzed_socket.h ('k') | net/socket/fuzzed_socket_factory.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/fuzzed_socket.cc
diff --git a/net/socket/fuzzed_socket.cc b/net/socket/fuzzed_socket.cc
index 11db43a36d8ffb7c44355eb38ac9e69cf56a9736..79c0bcf6bcda3f3ce39fdaeada59a9a7729863c1 100644
--- a/net/socket/fuzzed_socket.cc
+++ b/net/socket/fuzzed_socket.cc
@@ -9,8 +9,8 @@
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
+#include "base/test/fuzzed_data_provider.h"
#include "base/threading/thread_task_runner_handle.h"
-#include "net/base/fuzzed_data_provider.h"
#include "net/base/io_buffer.h"
namespace net {
@@ -32,7 +32,7 @@ const Error kReadWriteErrors[] = {ERR_CONNECTION_CLOSED, ERR_FAILED,
} // namespace
-FuzzedSocket::FuzzedSocket(FuzzedDataProvider* data_provider,
+FuzzedSocket::FuzzedSocket(base::FuzzedDataProvider* data_provider,
net::NetLog* net_log)
: data_provider_(data_provider),
bound_net_log_(BoundNetLog::Make(net_log, NetLog::SOURCE_SOCKET)),
« no previous file with comments | « net/socket/fuzzed_socket.h ('k') | net/socket/fuzzed_socket_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698