// 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. #ifndef COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ #define COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_ #include <memory> #include "components/keyed_service/core/keyed_service.h" namespace gcm { class GCMDriver; } namespace instance_id { class InstanceIDDriver; // Providing Instance ID support, via InstanceIDDriver, to a profile. class InstanceIDProfileService : public KeyedService { … }; } // namespace instance_id #endif // COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_PROFILE_SERVICE_H_