// 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 "autocomplete_provider_debouncer.h" AutocompleteProviderDebouncer::AutocompleteProviderDebouncer(bool from_last_run, int delay_ms) : … { … } AutocompleteProviderDebouncer::~AutocompleteProviderDebouncer() = default; void AutocompleteProviderDebouncer::RequestRun( base::OnceCallback<void()> callback) { … } void AutocompleteProviderDebouncer::CancelRequest() { … } void AutocompleteProviderDebouncer::FlushRequest() { … } void AutocompleteProviderDebouncer::Run() { … }