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

Unified Diff: jingle/notifier/listener/talk_mediator_impl.cc

Issue 6874018: make new syncer thread the default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Upload before submit. Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/notification_type.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/listener/talk_mediator_impl.cc
diff --git a/jingle/notifier/listener/talk_mediator_impl.cc b/jingle/notifier/listener/talk_mediator_impl.cc
index 5bd70dcbc9b08eb5bbc7c4b5e2e758cb54f896f6..761f8409f59bff583c2419af3d30a4b6c1b656f8 100644
--- a/jingle/notifier/listener/talk_mediator_impl.cc
+++ b/jingle/notifier/listener/talk_mediator_impl.cc
@@ -57,7 +57,8 @@ bool TalkMediatorImpl::Logout() {
bool TalkMediatorImpl::SendNotification(const Notification& data) {
CheckOrSetValidThread();
- if (state_.logged_in && state_.subscribed) {
+ // TODO(akalin) - remove state_.subscribed from this file.
+ if (state_.logged_in) {
mediator_thread_->SendNotification(data);
return true;
}
« no previous file with comments | « content/common/notification_type.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698