diff options
Diffstat (limited to 'chrome/browser/extensions/extension_idle_api.h')
-rw-r--r-- | chrome/browser/extensions/extension_idle_api.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/browser/extensions/extension_idle_api.h b/chrome/browser/extensions/extension_idle_api.h new file mode 100644 index 0000000..ab27ec1 --- /dev/null +++ b/chrome/browser/extensions/extension_idle_api.h @@ -0,0 +1,28 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ +#define CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ + +#include "chrome/browser/idle.h" +#include "chrome/browser/profile.h" +#include "chrome/browser/extensions/extension_function.h" + +// Event router class for events related to the idle API. +class ExtensionIdleEventRouter { + public: + static void OnIdleStateChange(Profile* profile, + IdleState idleState); + private: + DISALLOW_COPY_AND_ASSIGN(ExtensionIdleEventRouter); +}; + +// Implementation of the chrome.idle.queryState API. +class ExtensionIdleQueryStateFunction : public SyncExtensionFunction { + public: + virtual bool RunImpl(); + DECLARE_EXTENSION_FUNCTION_NAME("idle.queryState") +}; + +#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ |