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

Unified Diff: net/nqe/cached_network_quality.h

Issue 1942893002: Split NQE to multiple files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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/net.gypi ('k') | net/nqe/cached_network_quality.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/nqe/cached_network_quality.h
diff --git a/net/nqe/cached_network_quality.h b/net/nqe/cached_network_quality.h
new file mode 100644
index 0000000000000000000000000000000000000000..cc0af2f1b8d48d68c2d8c2fc69de14c8809c6242
--- /dev/null
+++ b/net/nqe/cached_network_quality.h
@@ -0,0 +1,49 @@
+// Copyright 2016 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_NQE_CACHED_NETWORK_QUALITY_H_
+#define NET_NQE_CACHED_NETWORK_QUALITY_H_
+
+#include "base/macros.h"
+#include "base/time/time.h"
+#include "net/base/net_export.h"
+#include "net/nqe/network_quality.h"
+
+namespace net {
+
+namespace nqe {
+
+namespace internal {
+
+// CachedNetworkQuality stores the quality of a previously seen network.
+class NET_EXPORT_PRIVATE CachedNetworkQuality {
+ public:
+ explicit CachedNetworkQuality(const NetworkQuality& network_quality);
+ CachedNetworkQuality(const CachedNetworkQuality& other);
+ ~CachedNetworkQuality();
+
+ // Returns the network quality associated with this cached entry.
+ const NetworkQuality& network_quality() const { return network_quality_; }
+
+ // Returns true if this cache entry was updated before
+ // |cached_network_quality|.
+ bool OlderThan(const CachedNetworkQuality& cached_network_quality) const;
+
+ // Time when this cache entry was last updated.
+ const base::TimeTicks last_update_time_;
+
+ // Quality of this cached network.
+ const NetworkQuality network_quality_;
+
+ private:
+ DISALLOW_ASSIGN(CachedNetworkQuality);
+};
+
+} // namespace internal
+
+} // namespace nqe
+
+} // namespace net
+
+#endif // NET_NQE_CACHED_NETWORK_QUALITY_H_
« no previous file with comments | « net/net.gypi ('k') | net/nqe/cached_network_quality.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698