Index: chrome/browser/extensions/system/system_api.h |
diff --git a/chrome/browser/extensions/system/system_api.h b/chrome/browser/extensions/system/system_api.h |
index 5e26978d8aa8107d4d47752836e0c5b29a1b0560..43407cf8c7d26a4790e8cd136c25318092e9f39c 100644 |
--- a/chrome/browser/extensions/system/system_api.h |
+++ b/chrome/browser/extensions/system/system_api.h |
@@ -35,10 +35,14 @@ class GetUpdateStatusFunction : public SyncExtensionFunction { |
virtual bool RunImpl() OVERRIDE; |
}; |
-void DispatchBrightnessChangedEvent(int brightness, bool user_initiated); |
-void DispatchVolumeChangedEvent(double volume, bool is_volume_muted); |
-void DispatchScreenUnlockedEvent(); |
-void DispatchWokeUpEvent(); |
+void DispatchBrightnessChangedEvent(Profile* profile, |
+ int brightness, |
+ bool user_initiated); |
+void DispatchVolumeChangedEvent(Profile* profile, |
+ double volume, |
+ bool is_volume_muted); |
+void DispatchScreenUnlockedEvent(Profile* profile); |
+void DispatchWokeUpEvent(Profile* profile); |
satorux1
2012/09/12 20:33:23
While you are at it. Could you add function commen
hashimoto
2012/09/12 20:42:51
Done.
|
} // namespace extensions |