1 // Copyright 2013 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 EXTENSIONS_BROWSER_API_SYSTEM_MEMORY_SYSTEM_MEMORY_API_H_
6 #define EXTENSIONS_BROWSER_API_SYSTEM_MEMORY_SYSTEM_MEMORY_API_H_
8 #include "extensions/browser/extension_function.h"
9 #include "extensions/common/api/system_memory.h"
11 namespace extensions
{
13 class SystemMemoryGetInfoFunction
: public AsyncExtensionFunction
{
15 DECLARE_EXTENSION_FUNCTION("system.memory.getInfo", SYSTEM_MEMORY_GETINFO
)
16 SystemMemoryGetInfoFunction();
19 ~SystemMemoryGetInfoFunction() override
;
20 bool RunAsync() override
;
21 void OnGetMemoryInfoCompleted(bool success
);
24 } // namespace extensions
26 #endif // EXTENSIONS_BROWSER_API_SYSTEM_MEMORY_SYSTEM_MEMORY_API_H_