blob: d6e0c898b3c6954bb3eac0c6b6f3f7a61c4bb5e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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_
#pragma once
#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_
|