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

Side by Side Diff: chrome/browser/chromeos/accessibility/accessibility_private_extension_api.h

Issue 8747003: Add private system extension API to get system update status (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Codereview Created 9 years 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
(Empty)
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.
4
5 #ifndef CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_PRIVATE_EXTENSION_AP I_H_
6 #define CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_PRIVATE_EXTENSION_AP I_H_
7 #pragma once
8
9 #include "base/compiler_specific.h"
10 #include "chrome/browser/extensions/extension_function.h"
11
12 namespace chromeos {
13 namespace accessibility {
14
15 // API function that returns the status of system update.
16 class GetUpdateStatusFunction : public SyncExtensionFunction {
17 virtual ~GetUpdateStatusFunction() {}
18 virtual bool RunImpl() OVERRIDE;
19 DECLARE_EXTENSION_FUNCTION_NAME(
20 "accessibilityPrivate.getUpdateStatus")
21 };
22
23
24 } // namespace accessibility
25 } // namespace chromeos
26
27 #endif // CHROME_BROWSER_CHROMEOS_ACCESSIBILITY_ACCESSIBILITY_PRIVATE_EXTENSION _API_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698