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

Unified Diff: third_party/WebKit/Source/core/loader/NetworkQuietDetector.h

Issue 2925963002: Create NetworkQuietDetector. (Closed)
Patch Set: Dont create NetworkQuietDetector when FrameResourceCoordinator is not enabled Created 3 years, 6 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: third_party/WebKit/Source/core/loader/NetworkQuietDetector.h
diff --git a/third_party/WebKit/Source/core/loader/NetworkQuietDetector.h b/third_party/WebKit/Source/core/loader/NetworkQuietDetector.h
new file mode 100644
index 0000000000000000000000000000000000000000..c9645f16a1df0d25f4124ee2ff8e9caccaa24d2e
--- /dev/null
+++ b/third_party/WebKit/Source/core/loader/NetworkQuietDetector.h
@@ -0,0 +1,56 @@
+// 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.
+
+#ifndef NetworkQuietDetector_h
+#define NetworkQuietDetector_h
+
+#include "core/CoreExport.h"
+#include "core/dom/Document.h"
+#include "platform/Supplementable.h"
+#include "platform/Timer.h"
+#include "platform/heap/Handle.h"
+#include "platform/wtf/Noncopyable.h"
+
+namespace blink {
+
+class Document;
+
+// NetworkQuietDetector observes network request count everytime a load is
+// finshed after DOMContentLoadedEventEnd is fired, and signals a network
+// idleness signal to GRC when there are no more than 2 network connection
+// active in 1 second.
+class CORE_EXPORT NetworkQuietDetector
+ : public GarbageCollectedFinalized<NetworkQuietDetector>,
+ public Supplement<Document> {
+ WTF_MAKE_NONCOPYABLE(NetworkQuietDetector);
+ USING_GARBAGE_COLLECTED_MIXIN(NetworkQuietDetector);
+
+ public:
+ static NetworkQuietDetector& From(Document&);
+ virtual ~NetworkQuietDetector() {}
+
+ void CheckNetworkStable();
+
+ DECLARE_VIRTUAL_TRACE();
+
+ private:
+ friend class NetworkQuietDetectorTest;
+
+ // The page is quiet if there are no more than 2 active network requests for
+ // this duration of time.
+ static constexpr double kNetworkQuietWindowSeconds = 1.0;
+ static constexpr int kNetworkQuietMaximumConnections = 2;
+
+ explicit NetworkQuietDetector(Document&);
+ int ActiveConnections();
+ void SetNetworkQuietTimers(int active_connections);
+ void NetworkQuietTimerFired(TimerBase*);
+
+ bool network_quiet_reached_ = false;
+ TaskRunnerTimer<NetworkQuietDetector> network_quiet_timer_;
+};
+
+} // namespace blink
+
+#endif

Powered by Google App Engine
This is Rietveld 408576698