// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_DEVICE_IDENTITY_DEVICE_IDENTITY_PROVIDER_H_ #define CHROME_BROWSER_DEVICE_IDENTITY_DEVICE_IDENTITY_PROVIDER_H_ #include "base/memory/raw_ptr.h" #include "components/invalidation/public/identity_provider.h" class DeviceOAuth2TokenService; // Identity provider implementation backed by DeviceOAuth2TokenService. class DeviceIdentityProvider : public invalidation::IdentityProvider { … }; #endif // CHROME_BROWSER_DEVICE_IDENTITY_DEVICE_IDENTITY_PROVIDER_H_