summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/frame/performance_monitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/frame/performance_monitor.h')
-rw-r--r--chromium/third_party/blink/renderer/core/frame/performance_monitor.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/frame/performance_monitor.h b/chromium/third_party/blink/renderer/core/frame/performance_monitor.h
index 46205d7cfd1..3763e1c0f07 100644
--- a/chromium/third_party/blink/renderer/core/frame/performance_monitor.h
+++ b/chromium/third_party/blink/renderer/core/frame/performance_monitor.h
@@ -5,7 +5,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_PERFORMANCE_MONITOR_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_FRAME_PERFORMANCE_MONITOR_H_
-#include "base/macros.h"
#include "base/task/sequence_manager/task_time_observer.h"
#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/core/dom/document.h"
@@ -103,6 +102,8 @@ class CORE_EXPORT PerformanceMonitor final
void Shutdown();
PerformanceMonitor(LocalFrame*, v8::Isolate*);
+ PerformanceMonitor(const PerformanceMonitor&) = delete;
+ PerformanceMonitor& operator=(const PerformanceMonitor&) = delete;
~PerformanceMonitor() override;
virtual void Trace(Visitor*) const;
@@ -163,8 +164,6 @@ class CORE_EXPORT PerformanceMonitor final
typename DefaultHash<size_t>::Hash,
WTF::UnsignedWithZeroKeyHashTraits<size_t>>
subscriptions_;
-
- DISALLOW_COPY_AND_ASSIGN(PerformanceMonitor);
};
} // namespace blink