Reland the ULONG -> SIZE_T change from 317177
[chromium-blink-merge.git] / extensions / browser / api / system_memory / system_memory_api.h
blobb592d8056ed698c3d3e23ecc804d70da875cb295
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 {
14 public:
15 DECLARE_EXTENSION_FUNCTION("system.memory.getInfo", SYSTEM_MEMORY_GETINFO)
16 SystemMemoryGetInfoFunction();
18 private:
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_