OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ |
7 #pragma once | |
8 | 7 |
9 #include "chrome/browser/idle.h" | 8 #include "chrome/browser/idle.h" |
10 #include "chrome/browser/extensions/extension_function.h" | 9 #include "chrome/browser/extensions/extension_function.h" |
11 | 10 |
12 class Profile; | 11 class Profile; |
13 | 12 |
14 // Event router class for events related to the idle API. | 13 // Event router class for events related to the idle API. |
15 class ExtensionIdleEventRouter { | 14 class ExtensionIdleEventRouter { |
16 public: | 15 public: |
17 static void OnIdleStateChange(Profile* profile, | 16 static void OnIdleStateChange(Profile* profile, |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 // |moment| is moment in time this method is called. | 74 // |moment| is moment in time this method is called. |
76 static void Update(int threshold, IdleState state, double moment); | 75 static void Update(int threshold, IdleState state, double moment); |
77 | 76 |
78 static int get_min_threshold(); | 77 static int get_min_threshold(); |
79 static double get_throttle_interval(); | 78 static double get_throttle_interval(); |
80 | 79 |
81 static CacheData cached_data; | 80 static CacheData cached_data; |
82 }; | 81 }; |
83 | 82 |
84 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ | 83 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_IDLE_API_H_ |
OLD | NEW |