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 #ifndef SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ | 6 #define SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ |
7 #pragma once | |
8 | 7 |
9 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
10 #include "sync/internal_api/public/base/model_type.h" | 9 #include "sync/internal_api/public/base/model_type.h" |
11 #include "sync/internal_api/public/base/model_type_payload_map.h" | 10 #include "sync/internal_api/public/base/model_type_payload_map.h" |
12 #include "sync/protocol/sync.pb.h" | 11 #include "sync/protocol/sync.pb.h" |
13 | 12 |
14 namespace base { | 13 namespace base { |
15 class DictionaryValue; | 14 class DictionaryValue; |
16 } | 15 } |
17 | 16 |
(...skipping 15 matching lines...) Expand all Loading... |
33 base::DictionaryValue* ToValue() const; | 32 base::DictionaryValue* ToValue() const; |
34 | 33 |
35 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source; | 34 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource updates_source; |
36 syncer::ModelTypePayloadMap types; | 35 syncer::ModelTypePayloadMap types; |
37 }; | 36 }; |
38 | 37 |
39 } // namespace sessions | 38 } // namespace sessions |
40 } // namespace syncer | 39 } // namespace syncer |
41 | 40 |
42 #endif // SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ | 41 #endif // SYNC_INTERNAL_API_PUBLIC_SESSIONS_SYNC_SOURCE_INFO_H_ |
OLD | NEW |