chromium/extensions/browser/api/alarms/alarms_api.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef EXTENSIONS_BROWSER_API_ALARMS_ALARMS_API_H_
#define EXTENSIONS_BROWSER_API_ALARMS_ALARMS_API_H_

#include <vector>

#include "base/memory/raw_ptr.h"
#include "extensions/browser/extension_function.h"

namespace base {
class Clock;
}  // namespace base

namespace extensions {
struct Alarm;
AlarmList;

class AlarmsCreateFunction : public ExtensionFunction {};

class AlarmsGetFunction : public ExtensionFunction {};

class AlarmsGetAllFunction : public ExtensionFunction {};

class AlarmsClearFunction : public ExtensionFunction {};

class AlarmsClearAllFunction : public ExtensionFunction {};

}  //  namespace extensions

#endif  // EXTENSIONS_BROWSER_API_ALARMS_ALARMS_API_H_