summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/extensions/media_player_event_router.cc
blob: ea8f70b5afe3bc2ca3a20b3d1448689b65541213 (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) 2011 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.

#include "chrome/browser/chromeos/extensions/media_player_event_router.h"

#include "base/memory/singleton.h"
#include "chrome/browser/extensions/extension_event_router.h"
#include "chrome/browser/profiles/profile.h"

ExtensionMediaPlayerEventRouter::ExtensionMediaPlayerEventRouter()
    : profile_(NULL) {
}

ExtensionMediaPlayerEventRouter*
    ExtensionMediaPlayerEventRouter::GetInstance() {
  return Singleton<ExtensionMediaPlayerEventRouter>::get();
}

void ExtensionMediaPlayerEventRouter::Init(Profile* profile) {
  profile_ = profile;
}

void ExtensionMediaPlayerEventRouter::NotifyPlaylistChanged() {
  if (profile_ && profile_->GetExtensionEventRouter()) {
    profile_->GetExtensionEventRouter()->DispatchEventToRenderers(
      "mediaPlayerPrivate.onPlaylistChanged", "[]", NULL, GURL());
  }
}