summaryrefslogtreecommitdiff
path: root/chromium/net/http/http_stream_factory_test_util.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-02 12:21:57 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2022-02-12 08:13:00 +0000
commit606d85f2a5386472314d39923da28c70c60dc8e7 (patch)
treea8f4d7bf997f349f45605e6058259fba0630e4d7 /chromium/net/http/http_stream_factory_test_util.h
parent5786336dda477d04fb98483dca1a5426eebde2d7 (diff)
downloadqtwebengine-chromium-606d85f2a5386472314d39923da28c70c60dc8e7.tar.gz
BASELINE: Update Chromium to 96.0.4664.181
Change-Id: I762cd1da89d73aa6313b4a753fe126c34833f046 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/net/http/http_stream_factory_test_util.h')
-rw-r--r--chromium/net/http/http_stream_factory_test_util.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/net/http/http_stream_factory_test_util.h b/chromium/net/http/http_stream_factory_test_util.h
index d94b2420756..708a749d8a5 100644
--- a/chromium/net/http/http_stream_factory_test_util.h
+++ b/chromium/net/http/http_stream_factory_test_util.h
@@ -46,6 +46,10 @@ class MockHttpStreamRequestDelegate : public HttpStreamRequest::Delegate {
public:
MockHttpStreamRequestDelegate();
+ MockHttpStreamRequestDelegate(const MockHttpStreamRequestDelegate&) = delete;
+ MockHttpStreamRequestDelegate& operator=(
+ const MockHttpStreamRequestDelegate&) = delete;
+
~MockHttpStreamRequestDelegate() override;
// std::unique_ptr is not copyable and therefore cannot be mocked.
@@ -95,9 +99,6 @@ class MockHttpStreamRequestDelegate : public HttpStreamRequest::Delegate {
SSLCertRequestInfo* cert_info));
MOCK_METHOD0(OnQuicBroken, void());
-
- private:
- DISALLOW_COPY_AND_ASSIGN(MockHttpStreamRequestDelegate);
};
class MockHttpStreamFactoryJob : public HttpStreamFactory::Job {