summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h')
-rw-r--r--chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h b/chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h
index e10ae68710c..0b12beb7f84 100644
--- a/chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h
+++ b/chromium/third_party/blink/renderer/core/html/track/vtt/vtt_tokenizer.h
@@ -31,7 +31,6 @@
#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_HTML_TRACK_VTT_VTT_TOKENIZER_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_HTML_TRACK_VTT_VTT_TOKENIZER_H_
-#include "base/macros.h"
#include "third_party/blink/renderer/core/html/parser/input_stream_preprocessor.h"
#include "third_party/blink/renderer/core/html/track/vtt/vtt_token.h"
#include "third_party/blink/renderer/platform/wtf/allocator/allocator.h"
@@ -43,6 +42,8 @@ class VTTTokenizer {
public:
explicit VTTTokenizer(const String& input);
+ VTTTokenizer(const VTTTokenizer&) = delete;
+ VTTTokenizer& operator=(const VTTTokenizer&) = delete;
bool NextToken(VTTToken&);
@@ -53,8 +54,6 @@ class VTTTokenizer {
// ://www.whatwg.org/specs/web-apps/current-work/#preprocessing-the-input-stream
InputStreamPreprocessor<VTTTokenizer> input_stream_preprocessor_;
-
- DISALLOW_COPY_AND_ASSIGN(VTTTokenizer);
};
} // namespace blink