summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-10-26 13:57:00 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-11-02 11:31:01 +0000
commit1943b3c2a1dcee36c233724fc4ee7613d71b9cf6 (patch)
tree8c1b5f12357025c197da5427ae02cfdc2f3570d6 /chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h
parent21ba0c5d4bf8fba15dddd97cd693bad2358b77fd (diff)
downloadqtwebengine-chromium-1943b3c2a1dcee36c233724fc4ee7613d71b9cf6.tar.gz
BASELINE: Update Chromium to 94.0.4606.111
Change-Id: I924781584def20fc800bedf6ff41fdb96c438193 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h')
-rw-r--r--chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h b/chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h
index 9c9ef87280d..2fda17816ac 100644
--- a/chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h
+++ b/chromium/third_party/blink/renderer/core/loader/web_associated_url_loader_impl.h
@@ -5,7 +5,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_WEB_ASSOCIATED_URL_LOADER_IMPL_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_LOADER_WEB_ASSOCIATED_URL_LOADER_IMPL_H_
-#include "base/macros.h"
#include "base/memory/scoped_refptr.h"
#include "base/single_thread_task_runner.h"
#include "third_party/blink/public/web/web_associated_url_loader.h"
@@ -27,6 +26,9 @@ class CORE_EXPORT WebAssociatedURLLoaderImpl final
public:
WebAssociatedURLLoaderImpl(ExecutionContext*,
const WebAssociatedURLLoaderOptions&);
+ WebAssociatedURLLoaderImpl(const WebAssociatedURLLoaderImpl&) = delete;
+ WebAssociatedURLLoaderImpl& operator=(const WebAssociatedURLLoaderImpl&) =
+ delete;
~WebAssociatedURLLoaderImpl() override;
void LoadAsynchronously(const WebURLRequest&,
@@ -63,8 +65,6 @@ class CORE_EXPORT WebAssociatedURLLoaderImpl final
// A ExecutionContextLifecycleObserver for cancelling |loader_| when the
// context is detached.
Persistent<Observer> observer_;
-
- DISALLOW_COPY_AND_ASSIGN(WebAssociatedURLLoaderImpl);
};
} // namespace blink