Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: chrome/browser/extensions/api/power/power_api.h

Issue 12576018: Add chrome.power extension API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: apply review feedback Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_POWER_POWER_API_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_POWER_POWER_API_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_POWER_POWER_API_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_POWER_POWER_API_H_
7 7
8 #include "chrome/browser/extensions/extension_function.h" 8 #include "chrome/browser/extensions/extension_function.h"
9 9
10 namespace extensions { 10 namespace extensions {
11 11
12 // Implementation of the chrome.experimental.power.requestKeepAwake API. 12 // Implementation of the chrome.power.requestKeepAwake API.
13 class PowerRequestKeepAwakeFunction : public SyncExtensionFunction { 13 class PowerRequestKeepAwakeFunction : public SyncExtensionFunction {
14 public: 14 public:
15 DECLARE_EXTENSION_FUNCTION("experimental.power.requestKeepAwake", 15 DECLARE_EXTENSION_FUNCTION("power.requestKeepAwake", POWER_REQUESTKEEPAWAKE)
16 EXPERIMENTAL_POWER_REQUESTKEEPAWAKE)
17 16
18 protected: 17 protected:
19 virtual ~PowerRequestKeepAwakeFunction() {} 18 virtual ~PowerRequestKeepAwakeFunction() {}
20 19
21 // ExtensionFunction: 20 // ExtensionFunction:
22 virtual bool RunImpl() OVERRIDE; 21 virtual bool RunImpl() OVERRIDE;
23 }; 22 };
24 23
25 // Implementation of the chrome.experimental.power.releaseKeepAwake API. 24 // Implementation of the chrome.power.releaseKeepAwake API.
26 class PowerReleaseKeepAwakeFunction : public SyncExtensionFunction { 25 class PowerReleaseKeepAwakeFunction : public SyncExtensionFunction {
27 public: 26 public:
28 DECLARE_EXTENSION_FUNCTION("experimental.power.releaseKeepAwake", 27 DECLARE_EXTENSION_FUNCTION("power.releaseKeepAwake", POWER_RELEASEKEEPAWAKE)
29 EXPERIMENTAL_POWER_RELEASEKEEPAWAKE)
30 28
31 protected: 29 protected:
32 virtual ~PowerReleaseKeepAwakeFunction() {} 30 virtual ~PowerReleaseKeepAwakeFunction() {}
33 31
34 // ExtensionFunction: 32 // ExtensionFunction:
35 virtual bool RunImpl() OVERRIDE; 33 virtual bool RunImpl() OVERRIDE;
36 }; 34 };
37 35
38 } // namespace extensions 36 } // namespace extensions
39 37
40 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_POWER_POWER_API_H_ 38 #endif // CHROME_BROWSER_EXTENSIONS_API_POWER_POWER_API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698