1 // Copyright (c) 2011 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_CHROMEOS_EXTENSIONS_INFO_PRIVATE_API_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_INFO_PRIVATE_API_H_
10 #include "base/compiler_specific.h"
11 #include "extensions/browser/extension_function.h"
17 namespace extensions
{
19 class ChromeosInfoPrivateGetFunction
: public AsyncExtensionFunction
{
21 ChromeosInfoPrivateGetFunction();
24 virtual ~ChromeosInfoPrivateGetFunction();
26 virtual bool RunImpl() OVERRIDE
;
29 // Returns a newly allocate value, or null.
30 base::Value
* GetValue(const std::string
& property_name
);
32 DECLARE_EXTENSION_FUNCTION("chromeosInfoPrivate.get", CHROMEOSINFOPRIVATE_GET
)
35 class ChromeosInfoPrivateSetFunction
: public SyncExtensionFunction
{
37 ChromeosInfoPrivateSetFunction();
40 virtual ~ChromeosInfoPrivateSetFunction();
42 virtual bool RunImpl() OVERRIDE
;
45 DECLARE_EXTENSION_FUNCTION("chromeosInfoPrivate.set", CHROMEOSINFOPRIVATE_SET
)
49 } // namespace extensions
51 #endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_INFO_PRIVATE_API_H_