blob: a65a953aadd2df14911cc0215a41d1dcaab5de3f [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// 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_CONSTANTS_H_
#define EXTENSIONS_BROWSER_API_ALARMS_ALARMS_API_CONSTANTS_H_
namespace extensions {
namespace alarms_api_constants {
// Minimum specifiable alarm period (in minutes) for unpacked extensions.
extern const double kDevDelayMinimum;
// Minimum specifiable alarm period (in minutes) for packed/crx extensions.
extern const int kReleaseDelayMinimum;
extern const char kWarningMinimumDevDelay[];
extern const char kWarningMinimumReleaseDelay[];
extern const char kWarningMinimumDevPeriod[];
extern const char kWarningMinimumReleasePeriod[];
} // namespace alarms_api_constants
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_ALARMS_ALARMS_API_CONSTANTS_H_