summaryrefslogtreecommitdiff
path: root/chromium/ui/base/prediction/empty_predictor.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2020-10-29 10:46:47 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2020-11-02 12:02:10 +0000
commit99677208ff3b216fdfec551fbe548da5520cd6fb (patch)
tree476a4865c10320249360e859d8fdd3e01833b03a /chromium/ui/base/prediction/empty_predictor.cc
parentc30a6232df03e1efbd9f3b226777b07e087a1122 (diff)
downloadqtwebengine-chromium-99677208ff3b216fdfec551fbe548da5520cd6fb.tar.gz
BASELINE: Update Chromium to 86.0.4240.124
Change-Id: Ide0ff151e94cd665ae6521a446995d34a9d1d644 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/ui/base/prediction/empty_predictor.cc')
-rw-r--r--chromium/ui/base/prediction/empty_predictor.cc43
1 files changed, 43 insertions, 0 deletions
diff --git a/chromium/ui/base/prediction/empty_predictor.cc b/chromium/ui/base/prediction/empty_predictor.cc
new file mode 100644
index 00000000000..98598808b49
--- /dev/null
+++ b/chromium/ui/base/prediction/empty_predictor.cc
@@ -0,0 +1,43 @@
+// Copyright 2018 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ui/base/prediction/empty_predictor.h"
+#include "ui/base/ui_base_features.h"
+
+namespace ui {
+
+EmptyPredictor::EmptyPredictor() {
+ Reset();
+}
+
+EmptyPredictor::~EmptyPredictor() = default;
+
+const char* EmptyPredictor::GetName() const {
+ return features::kPredictorNameEmpty;
+}
+
+void EmptyPredictor::Reset() {
+ last_input_ = base::nullopt;
+}
+
+void EmptyPredictor::Update(const InputData& cur_input) {
+ last_input_ = cur_input;
+}
+
+bool EmptyPredictor::HasPrediction() const {
+ return last_input_.has_value();
+}
+
+std::unique_ptr<InputPredictor::InputData> EmptyPredictor::GeneratePrediction(
+ base::TimeTicks predict_time) const {
+ if (!HasPrediction())
+ return nullptr;
+ return std::make_unique<InputData>(last_input_.value());
+}
+
+base::TimeDelta EmptyPredictor::TimeInterval() const {
+ return kTimeInterval;
+}
+
+} // namespace ui