// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/paint_preview/browser/hit_tester.h" #include <vector> #include "components/paint_preview/common/proto/paint_preview.pb.h" namespace paint_preview { HitTester::HitTester() = default; HitTester::~HitTester() = default; void HitTester::Build(const PaintPreviewFrameProto& proto) { … } void HitTester::Build(const std::vector<LinkData>& links) { … } bool HitTester::IsValid() { … } void HitTester::HitTest(const gfx::Rect& query, std::vector<const GURL*>* results) const { … } } // namespace paint_preview