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

Side by Side Diff: chrome/browser/extensions/extension_idle_api.h

Issue 10698144: Remove #pragma once from chrome/browser/extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months 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
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
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_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_icon_manager.h ('k') | chrome/browser/extensions/extension_idle_api_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698