Chromium Code Reviews

Unified Diff: chrome/common/multi_process_notification.cc

Issue 5970015: Add multi-process notification class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Now receives notifications on the thread that calls Start on the listener Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/common/multi_process_notification.cc
diff --git a/chrome/common/multi_process_notification.cc b/chrome/common/multi_process_notification.cc
new file mode 100644
index 0000000000000000000000000000000000000000..064117ff5c00e4255945657ef9d060dc2e10f52d
--- /dev/null
+++ b/chrome/common/multi_process_notification.cc
@@ -0,0 +1,42 @@
+// 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/common/multi_process_notification.h"
+
+#include "base/task.h"
+
+namespace multi_process_notification {
+
+Listener::Delegate::~Delegate() {
+}
+
+void Listener::Delegate::OnListenerStarted(
+ const std::string& name, Domain domain, bool success) {
+}
+
+Listener::ListenerStartedTask::ListenerStartedTask(const std::string& name,
+ Domain domain, Listener::Delegate* delegate, bool success)
+ : name_(name), domain_(domain), delegate_(delegate), success_(success) {
+}
+
+Listener::ListenerStartedTask::~ListenerStartedTask() {
+}
+
+void Listener::ListenerStartedTask::Run() {
+ delegate_->OnListenerStarted(name_, domain_, success_);
+}
+
+Listener::NotificationReceivedTask::NotificationReceivedTask(
+ const std::string& name, Domain domain, Listener::Delegate* delegate)
+ : name_(name), domain_(domain), delegate_(delegate) {
+}
+
+Listener::NotificationReceivedTask::~NotificationReceivedTask() {
+}
+
+void Listener::NotificationReceivedTask::Run() {
+ delegate_->OnNotificationReceived(name_, domain_);
+}
+
+} // namespace multi_process_notification

Powered by Google App Engine