chromium/chrome/browser/extensions/api/gcm/gcm_api.h

// Copyright 2013 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_GCM_GCM_API_H_
#define CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_

#include "base/memory/raw_ptr.h"
#include "chrome/common/extensions/api/gcm.h"
#include "components/gcm_driver/gcm_client.h"
#include "extensions/browser/extension_function.h"

namespace gcm {
class GCMDriver;
}  // namespace gcm

class Profile;

namespace extensions {

class GcmApiFunction : public ExtensionFunction {};

class GcmRegisterFunction : public GcmApiFunction {};

class GcmUnregisterFunction : public GcmApiFunction {};

class GcmSendFunction : public GcmApiFunction {};

class GcmJsEventRouter {};

}  // namespace extensions

#endif  // CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_