// 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_DRIVER_H_ #define COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_DRIVER_H_ #include <map> #include <memory> #include <string> #include "base/memory/raw_ptr.h" namespace gcm { class GCMDriver; } // namespace gcm namespace instance_id { class InstanceID; // Bridge between Instance ID users in Chrome and the platform-specific // implementation. // // Create instances of this class with |InstanceIDProfileServiceFactory|. class InstanceIDDriver { … }; } // namespace instance_id #endif // COMPONENTS_GCM_DRIVER_INSTANCE_ID_INSTANCE_ID_DRIVER_H_