| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 | 4 |
| 5 #include "chrome/browser/sync/notifier/chrome_system_resources.h" | 5 #include "chrome/browser/sync/notifier/chrome_system_resources.h" |
| 6 | 6 |
| 7 #include <cstdlib> | 7 #include <cstdlib> |
| 8 #include <cstring> | 8 #include <cstring> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/stl_util-inl.h" | 13 #include "base/stl_util.h" |
| 14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
| 15 #include "base/stringprintf.h" | 15 #include "base/stringprintf.h" |
| 16 #include "chrome/browser/sync/notifier/cache_invalidation_packet_handler.h" | 16 #include "chrome/browser/sync/notifier/cache_invalidation_packet_handler.h" |
| 17 #include "chrome/browser/sync/notifier/invalidation_util.h" | 17 #include "chrome/browser/sync/notifier/invalidation_util.h" |
| 18 #include "google/cacheinvalidation/v2/types.h" | 18 #include "google/cacheinvalidation/v2/types.h" |
| 19 | 19 |
| 20 namespace sync_notifier { | 20 namespace sync_notifier { |
| 21 | 21 |
| 22 ChromeLogger::ChromeLogger() {} | 22 ChromeLogger::ChromeLogger() {} |
| 23 ChromeLogger::~ChromeLogger() {} | 23 ChromeLogger::~ChromeLogger() {} |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 | 276 |
| 277 ChromeScheduler* ChromeSystemResources::internal_scheduler() { | 277 ChromeScheduler* ChromeSystemResources::internal_scheduler() { |
| 278 return internal_scheduler_.get(); | 278 return internal_scheduler_.get(); |
| 279 } | 279 } |
| 280 | 280 |
| 281 ChromeScheduler* ChromeSystemResources::listener_scheduler() { | 281 ChromeScheduler* ChromeSystemResources::listener_scheduler() { |
| 282 return listener_scheduler_.get(); | 282 return listener_scheduler_.get(); |
| 283 } | 283 } |
| 284 | 284 |
| 285 } // namespace sync_notifier | 285 } // namespace sync_notifier |
| OLD | NEW |