chromium/components/payments/core/has_enrolled_instrument_query.h

// 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_PAYMENTS_CORE_HAS_ENROLLED_INSTRUMENT_QUERY_H_
#define COMPONENTS_PAYMENTS_CORE_HAS_ENROLLED_INSTRUMENT_QUERY_H_

#include <map>
#include <memory>
#include <set>
#include <string>

#include "base/memory/weak_ptr.h"
#include "base/timer/timer.h"
#include "components/keyed_service/core/keyed_service.h"

class GURL;

namespace payments {

// Keeps track of hasEnrolledInstrument() queries per browser context.
class HasEnrolledInstrumentQuery : public KeyedService {};

}  // namespace payments

#endif  // COMPONENTS_PAYMENTS_CORE_HAS_ENROLLED_INSTRUMENT_QUERY_H_