| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 #include "chrome/browser/sync/engine/syncer_thread_pthreads.h" | 4 #include "chrome/browser/sync/engine/syncer_thread_pthreads.h" |
| 5 | 5 |
| 6 #include "build/build_config.h" | 6 #include "build/build_config.h" |
| 7 | 7 |
| 8 #ifdef OS_MACOSX | 8 #ifdef OS_MACOSX |
| 9 #include <CoreFoundation/CFNumber.h> | 9 #include <CoreFoundation/CFNumber.h> |
| 10 #include <IOKit/IOTypes.h> | 10 #include <IOKit/IOTypes.h> |
| (...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 default: | 569 default: |
| 570 break; | 570 break; |
| 571 } | 571 } |
| 572 | 572 |
| 573 if (NULL != syncer_) { | 573 if (NULL != syncer_) { |
| 574 syncer_->set_notifications_enabled(p2p_authenticated_ && p2p_subscribed_); | 574 syncer_->set_notifications_enabled(p2p_authenticated_ && p2p_subscribed_); |
| 575 } | 575 } |
| 576 } | 576 } |
| 577 | 577 |
| 578 } // namespace browser_sync | 578 } // namespace browser_sync |
| OLD | NEW |