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

Unified Diff: net/base/socket_performance_watcher_factory.h

Issue 1898603002: Move Network Quality Estimator files to //net/nqe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, removed //net/socket/OWNERS Created 4 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
« no previous file with comments | « net/base/socket_performance_watcher.h ('k') | net/dns/address_sorter_posix_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/socket_performance_watcher_factory.h
diff --git a/net/base/socket_performance_watcher_factory.h b/net/base/socket_performance_watcher_factory.h
deleted file mode 100644
index 2c1d3f3e597e0f1167a0afac6f9424b915f9ce35..0000000000000000000000000000000000000000
--- a/net/base/socket_performance_watcher_factory.h
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_
-#define NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_
-
-#include <memory>
-
-#include "base/macros.h"
-#include "net/base/net_export.h"
-
-namespace net {
-
-class SocketPerformanceWatcher;
-
-// SocketPerformanceWatcherFactory creates socket performance watcher for
-// different type of sockets.
-class NET_EXPORT_PRIVATE SocketPerformanceWatcherFactory {
- public:
- // Transport layer protocol used by the socket that are supported by
- // |SocketPerformanceWatcherFactory|.
- enum Protocol { PROTOCOL_TCP, PROTOCOL_QUIC };
-
- virtual ~SocketPerformanceWatcherFactory() {}
-
- // Creates a socket performance watcher that will record statistics for a
- // single socket that uses |protocol| as the transport layer protocol.
- // Implementations must return a valid, unique SocketRecorder for every call;
- // recorders must not be shared across calls or objects, nor is nullptr valid.
- virtual std::unique_ptr<SocketPerformanceWatcher>
- CreateSocketPerformanceWatcher(const Protocol protocol) = 0;
-
- protected:
- SocketPerformanceWatcherFactory() {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(SocketPerformanceWatcherFactory);
-};
-
-} // namespace net
-
-#endif // NET_BASE_SOCKET_PERFORMANCE_WATCHER_FACTORY_H_
« no previous file with comments | « net/base/socket_performance_watcher.h ('k') | net/dns/address_sorter_posix_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698