summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_log_util.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2017-07-12 14:07:37 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2017-07-17 10:29:26 +0000
commitec02ee4181c49b61fce1c8fb99292dbb8139cc90 (patch)
tree25cde714b2b71eb639d1cd53f5a22e9ba76e14ef /chromium/net/http/http_log_util.h
parentbb09965444b5bb20b096a291445170876225268d (diff)
downloadqtwebengine-chromium-ec02ee4181c49b61fce1c8fb99292dbb8139cc90.tar.gz
BASELINE: Update Chromium to 59.0.3071.134
Change-Id: Id02ef6fb2204c5fd21668a1c3e6911c83b17585a Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'chromium/net/http/http_log_util.h')
-rw-r--r--chromium/net/http/http_log_util.h20
1 files changed, 1 insertions, 19 deletions
diff --git a/chromium/net/http/http_log_util.h b/chromium/net/http/http_log_util.h
index ead8e7b1bb1..15a58f7f0b6 100644
--- a/chromium/net/http/http_log_util.h
+++ b/chromium/net/http/http_log_util.h
@@ -7,18 +7,11 @@
#include <string>
-#include "base/strings/string_piece.h"
#include "net/base/net_export.h"
-#include "net/spdy/spdy_header_block.h"
-
-namespace base {
-class ListValue;
-} // namespace base
+#include "net/log/net_log_capture_mode.h"
namespace net {
-class NetLogCaptureMode;
-
// Given an HTTP header |header| with value |value|, returns the elided version
// of the header value at |log_level|.
NET_EXPORT_PRIVATE std::string ElideHeaderValueForNetLog(
@@ -26,17 +19,6 @@ NET_EXPORT_PRIVATE std::string ElideHeaderValueForNetLog(
const std::string& header,
const std::string& value);
-// Given an HTTP/2 GOAWAY frame |debug_data|, returns the elided version
-// according to |capture_mode|.
-NET_EXPORT_PRIVATE std::string ElideGoAwayDebugDataForNetLog(
- NetLogCaptureMode capture_mode,
- base::StringPiece debug_data);
-
-// Given a SpdyHeaderBlock, return its base::ListValue representation.
-std::unique_ptr<base::ListValue> ElideSpdyHeaderBlockForNetLog(
- const SpdyHeaderBlock& headers,
- NetLogCaptureMode capture_mode);
-
} // namespace net
#endif // NET_HTTP_HTTP_LOG_UTIL_H_