chromium/chrome/browser/extensions/api/instance_id/instance_id_api.h

// 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 CHROME_BROWSER_EXTENSIONS_API_INSTANCE_ID_INSTANCE_ID_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_INSTANCE_ID_INSTANCE_ID_API_H_

#include "components/gcm_driver/instance_id/instance_id.h"
#include "extensions/browser/extension_function.h"

namespace extensions {

class InstanceIDApiFunction : public ExtensionFunction {};

class InstanceIDGetIDFunction : public InstanceIDApiFunction {};

class InstanceIDGetCreationTimeFunction : public InstanceIDApiFunction {};

class InstanceIDGetTokenFunction : public InstanceIDApiFunction {};

class InstanceIDDeleteTokenFunction : public InstanceIDApiFunction {};

class InstanceIDDeleteIDFunction : public InstanceIDApiFunction {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_INSTANCE_ID_INSTANCE_ID_API_H_