Index: chrome/browser/chromeos/extensions/media_player_event_router.cc |
diff --git a/chrome/browser/chromeos/extensions/media_player_event_router.cc b/chrome/browser/chromeos/extensions/media_player_event_router.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ea8f70b5afe3bc2ca3a20b3d1448689b65541213 |
--- /dev/null |
+++ b/chrome/browser/chromeos/extensions/media_player_event_router.cc |
@@ -0,0 +1,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()); |
+ } |
+} |