| 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 "chrome/browser/sync/glue/android_invalidator_bridge_proxy.h" | 5 #include "chrome/browser/sync/glue/android_invalidator_bridge_proxy.h" |
| 6 | 6 |
| 7 #include "chrome/browser/sync/glue/android_invalidator_bridge.h" | 7 #include "chrome/browser/sync/glue/android_invalidator_bridge.h" |
| 8 | 8 |
| 9 using std::string; | 9 using std::string; |
| 10 using syncer::InvalidatorState; | 10 using syncer::InvalidatorState; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 const string& email, const string& token) { | 50 const string& email, const string& token) { |
| 51 bridge_->UpdateCredentials(email, token); | 51 bridge_->UpdateCredentials(email, token); |
| 52 } | 52 } |
| 53 | 53 |
| 54 void AndroidInvalidatorBridgeProxy::SendInvalidation( | 54 void AndroidInvalidatorBridgeProxy::SendInvalidation( |
| 55 const syncer::ObjectIdInvalidationMap& invalidation_map) { | 55 const syncer::ObjectIdInvalidationMap& invalidation_map) { |
| 56 bridge_->SendInvalidation(invalidation_map); | 56 bridge_->SendInvalidation(invalidation_map); |
| 57 } | 57 } |
| 58 | 58 |
| 59 } // namespace browser_sync | 59 } // namespace browser_sync |
| OLD | NEW |