Enable Enterprise enrollment on desktop builds.
[chromium-blink-merge.git] / chrome / browser / extensions / api / power / power_api.h
blob6b12d2ad689220e9736cda73b24a2310cdd9d423
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_POWER_POWER_API_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_POWER_POWER_API_H_
8 #include "extensions/browser/extension_function.h"
10 namespace extensions {
12 // Implementation of the chrome.power.requestKeepAwake API.
13 class PowerRequestKeepAwakeFunction : public SyncExtensionFunction {
14 public:
15 DECLARE_EXTENSION_FUNCTION("power.requestKeepAwake", POWER_REQUESTKEEPAWAKE)
17 protected:
18 virtual ~PowerRequestKeepAwakeFunction() {}
20 // ExtensionFunction:
21 virtual bool RunSync() OVERRIDE;
24 // Implementation of the chrome.power.releaseKeepAwake API.
25 class PowerReleaseKeepAwakeFunction : public SyncExtensionFunction {
26 public:
27 DECLARE_EXTENSION_FUNCTION("power.releaseKeepAwake", POWER_RELEASEKEEPAWAKE)
29 protected:
30 virtual ~PowerReleaseKeepAwakeFunction() {}
32 // ExtensionFunction:
33 virtual bool RunSync() OVERRIDE;
36 } // namespace extensions
38 #endif // CHROME_BROWSER_EXTENSIONS_API_POWER_POWER_API_H_