Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(243)

Side by Side Diff: chrome/common/multi_process_notification.cc

Issue 6029014: Revert 70629 - Add multi-process notification class.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/common/multi_process_notification.h"
6
7 #include "base/task.h"
8
9 namespace multi_process_notification {
10
11 PerformTaskOnNotification::PerformTaskOnNotification(Task* task) : task_(task) {
12 }
13
14 PerformTaskOnNotification::~PerformTaskOnNotification() {
15 }
16
17 void PerformTaskOnNotification::OnNotificationReceived(
18 const std::string& name, Domain domain) {
19 task_->Run();
20 task_.reset();
21 }
22
23 bool PerformTaskOnNotification::WasNotificationReceived() {
24 return task_.get() == NULL;
25 }
26
27 } // namespace multi_process_notification
OLDNEW
« no previous file with comments | « chrome/common/multi_process_notification.h ('k') | chrome/common/multi_process_notification_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698