| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "sync/notifier/invalidator_factory.h" | 5 #include "sync/notifier/invalidator_factory.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/base64.h" | 9 #include "base/base64.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 invalidation_state_tracker_, | 98 invalidation_state_tracker_, |
| 99 client_info_); | 99 client_info_); |
| 100 #endif | 100 #endif |
| 101 } | 101 } |
| 102 | 102 |
| 103 std::string InvalidatorFactory::GetInvalidatorClientId() const { | 103 std::string InvalidatorFactory::GetInvalidatorClientId() const { |
| 104 return invalidator_client_id_; | 104 return invalidator_client_id_; |
| 105 } | 105 } |
| 106 | 106 |
| 107 } // namespace syncer | 107 } // namespace syncer |
| OLD | NEW |