Bug 782289 - Forward headphone status changed notification from gonk to chrome. r=philikon

The wrong patch was applied previously. This changeset rolls back the previous change and
applies the correct one.
This commit is contained in:
Dave Hylands 2012-09-06 13:47:58 -07:00
parent cb126a79ea
commit 50aa8610a3
2 changed files with 2 additions and 20 deletions

View File

@ -709,10 +709,10 @@ window.addEventListener('ContentStart', function ss_onContentStart() {
(function headphonesStatusTracker() {
Services.obs.addObserver(function(aSubject, aTopic, aData) {
shell.sendChromeEvent({
type: 'headphones-status',
type: 'headphones-status-changed',
state: aData
});
}, "headphones-status", false);
}, "headphones-status-changed", false);
})();
(function recordingStatusTracker() {

View File

@ -18,8 +18,6 @@
#include "mozilla/Hal.h"
#include "AudioManager.h"
#include "gonk/AudioSystem.h"
#include "nsIObserverService.h"
#include "mozilla/Services.h"
using namespace mozilla::dom::gonk;
using namespace android;
@ -55,27 +53,11 @@ InternalSetAudioRoutes(SwitchState aState)
}
}
static void
NotifyHeadphonesStatus(SwitchState aState)
{
nsCOMPtr<nsIObserverService> obs = mozilla::services::GetObserverService();
if (obs) {
if (aState == SWITCH_STATE_ON) {
obs->NotifyObservers(nullptr, "headphones-status", NS_LITERAL_STRING("on").get());
} else if (aState == SWITCH_STATE_OFF) {
obs->NotifyObservers(nullptr, "headphones-status", NS_LITERAL_STRING("off").get());
} else {
obs->NotifyObservers(nullptr, "headphones-status", NS_LITERAL_STRING("unknown").get());
}
}
}
class HeadphoneSwitchObserver : public SwitchObserver
{
public:
void Notify(const SwitchEvent& aEvent) {
InternalSetAudioRoutes(aEvent.status());
NotifyHeadphonesStatus(aEvent.status());
}
};