Avi Drissman | 4a8573c | 2022-09-09 19:35:54 | [diff] [blame] | 1 | // Copyright 2020 The Chromium Authors |
Rushan Suleymanov | 4f66fa0 | 2020-01-21 14:12:30 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CHROME_BROWSER_SHARING_SHARING_MESSAGE_BRIDGE_H_ |
| 6 | #define CHROME_BROWSER_SHARING_SHARING_MESSAGE_BRIDGE_H_ |
| 7 | |
| 8 | #include <memory> |
| 9 | |
Avi Drissman | 9269d4ed | 2023-01-07 01:38:06 | [diff] [blame^] | 10 | #include "base/functional/callback.h" |
Rushan Suleymanov | b32520d | 2020-01-23 11:35:12 | [diff] [blame] | 11 | #include "base/memory/weak_ptr.h" |
| 12 | #include "components/keyed_service/core/keyed_service.h" |
Rushan Suleymanov | 4f66fa0 | 2020-01-21 14:12:30 | [diff] [blame] | 13 | #include "components/sync/protocol/sharing_message_specifics.pb.h" |
| 14 | |
Rushan Suleymanov | b32520d | 2020-01-23 11:35:12 | [diff] [blame] | 15 | namespace syncer { |
| 16 | class ModelTypeControllerDelegate; |
| 17 | } // namespace syncer |
| 18 | |
Rushan Suleymanov | 4f66fa0 | 2020-01-21 14:12:30 | [diff] [blame] | 19 | // Class to provide an interface to send sharing messages using Sync. |
Rushan Suleymanov |
|