// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_BLOCKLIST_OPT_OUT_BLOCKLIST_OPT_OUT_BLOCKLIST_DELEGATE_H_ #define COMPONENTS_BLOCKLIST_OPT_OUT_BLOCKLIST_OPT_OUT_BLOCKLIST_DELEGATE_H_ #include <string> #include "base/time/time.h" namespace blocklist { // An interface for a delegate to the opt out blocklist. This interface is for // responding to events occurring in the opt out blocklist (e.g. New blocklisted // host and user is blocklisted). class OptOutBlocklistDelegate { … }; } // namespace blocklist #endif // COMPONENTS_BLOCKLIST_OPT_OUT_BLOCKLIST_OPT_OUT_BLOCKLIST_DELEGATE_H_