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

Unified Diff: components/data_reduction_proxy/core/browser/data_reduction_proxy_pingback_client.h

Issue 2010253003: Sending a data saver Pageload metrics pingback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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: components/data_reduction_proxy/core/browser/data_reduction_proxy_pingback_client.h
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_pingback_client.h b/components/data_reduction_proxy/core/browser/data_reduction_proxy_pingback_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..75d177196ae837ba1fe7fc9a0f04442854059ce0
--- /dev/null
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_pingback_client.h
@@ -0,0 +1,71 @@
+// 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 COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PINGBACK_CLIENT_H_
+#define COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PINGBACK_CLIENT_H_
+
+#include <list>
+#include <memory>
+#include <string>
+
+#include "base/macros.h"
+#include "base/threading/thread_checker.h"
+#include "net/url_request/url_fetcher_delegate.h"
+#include "url/gurl.h"
+
+namespace net {
+class URLFetcher;
+class URLRequestContextGetter;
+}
+
+namespace data_reduction_proxy {
+class DataReductionProxyData;
+struct DataReductionProxyPageLoadTiming;
+
+// Manages pingbacks about page load timing information to the data saver proxy
+// server. This class is not thread safe.
+class DataReductionProxyPingbackClient : public net::URLFetcherDelegate {
+ public:
+ // The caller must ensure that |url_request_context| remains alive for the
+ // lifetime of the |DataReductionProxyPingbackClient| instance.
+ explicit DataReductionProxyPingbackClient(
+ net::URLRequestContextGetter* url_request_context);
+ ~DataReductionProxyPingbackClient() override;
+
+ // Sends a pingback to the data saver proxy server about various timing
+ // information.
+ virtual void SendPingback(const DataReductionProxyData& data,
+ const DataReductionProxyPageLoadTiming& timing);
+
+ private:
+ // URLFetcherDelegate implmentation:
+ void OnURLFetchComplete(const net::URLFetcher* source) override;
+
+ // Whether a pingback should be sent. Virtualized for testing.
+ virtual bool ShouldSendPingback() const;
+
+ // Creates an URLFetcher that will POST to |secure_proxy_url_| using
+ // |url_request_context_|. The max retires is set to 5.
+ std::unique_ptr<net::URLFetcher> MaybeCreateFetcherForDataAndStart(
+ const std::string& data);
+
+ net::URLRequestContextGetter* url_request_context_;
+
+ // The URL for the data saver proxy's ping back service.
+ const GURL pingback_url_;
+
+ // The currently running fetcher.
+ std::unique_ptr<net::URLFetcher> current_fetcher_;
+
+ // Serialized data to send to the data saver proxy server.
+ std::list<std::string> data_to_send_;
+
+ base::ThreadChecker thread_checker_;
+
+ DISALLOW_COPY_AND_ASSIGN(DataReductionProxyPingbackClient);
+};
+
+} // namespace data_reduction_proxy
+
+#endif // COMPONENTS_DATA_REDUCTION_PROXY_CORE_BROWSER_DATA_REDUCTION_PROXY_PINGBACK_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698