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

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

Issue 622343002: replace OVERRIDE and FINAL with override and final in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 EXTENSIONS_BROWSER_API_POWER_POWER_API_H_ 5 #ifndef EXTENSIONS_BROWSER_API_POWER_POWER_API_H_
6 #define EXTENSIONS_BROWSER_API_POWER_POWER_API_H_ 6 #define EXTENSIONS_BROWSER_API_POWER_POWER_API_H_
7 7
8 #include "extensions/browser/extension_function.h" 8 #include "extensions/browser/extension_function.h"
9 9
10 namespace extensions { 10 namespace extensions {
11 11
12 // Implementation of the chrome.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("power.requestKeepAwake", POWER_REQUESTKEEPAWAKE) 15 DECLARE_EXTENSION_FUNCTION("power.requestKeepAwake", POWER_REQUESTKEEPAWAKE)
16 16
17 protected: 17 protected:
18 virtual ~PowerRequestKeepAwakeFunction() {} 18 virtual ~PowerRequestKeepAwakeFunction() {}
19 19
20 // ExtensionFunction: 20 // ExtensionFunction:
21 virtual bool RunSync() OVERRIDE; 21 virtual bool RunSync() override;
22 }; 22 };
23 23
24 // Implementation of the chrome.power.releaseKeepAwake API. 24 // Implementation of the chrome.power.releaseKeepAwake API.
25 class PowerReleaseKeepAwakeFunction : public SyncExtensionFunction { 25 class PowerReleaseKeepAwakeFunction : public SyncExtensionFunction {
26 public: 26 public:
27 DECLARE_EXTENSION_FUNCTION("power.releaseKeepAwake", POWER_RELEASEKEEPAWAKE) 27 DECLARE_EXTENSION_FUNCTION("power.releaseKeepAwake", POWER_RELEASEKEEPAWAKE)
28 28
29 protected: 29 protected:
30 virtual ~PowerReleaseKeepAwakeFunction() {} 30 virtual ~PowerReleaseKeepAwakeFunction() {}
31 31
32 // ExtensionFunction: 32 // ExtensionFunction:
33 virtual bool RunSync() OVERRIDE; 33 virtual bool RunSync() override;
34 }; 34 };
35 35
36 } // namespace extensions 36 } // namespace extensions
37 37
38 #endif // EXTENSIONS_BROWSER_API_POWER_POWER_API_H_ 38 #endif // EXTENSIONS_BROWSER_API_POWER_POWER_API_H_
OLDNEW
« no previous file with comments | « extensions/browser/api/hid/hid_connection_resource.h ('k') | extensions/browser/api/power/power_api_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698