chromium/third_party/blink/renderer/core/layout/hit_test_cache.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/layout/hit_test_cache.h"

#include "third_party/blink/public/platform/platform.h"

namespace blink {

bool HitTestCache::LookupCachedResult(const HitTestLocation& location,
                                      HitTestResult& hit_result,
                                      uint64_t dom_tree_version) {}

void HitTestCacheEntry::Trace(Visitor* visitor) const {}

void HitTestCacheEntry::CacheValues(const HitTestCacheEntry& other) {}

void HitTestCache::AddCachedResult(const HitTestLocation& location,
                                   const HitTestResult& result,
                                   uint64_t dom_tree_version) {}

void HitTestCache::Clear() {}

void HitTestCache::Trace(Visitor* visitor) const {}

}  // namespace blink