| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_SYNC_GLUE_EXTENSION_SYNC_TRAITS_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_EXTENSION_SYNC_TRAITS_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_EXTENSION_SYNC_TRAITS_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_EXTENSION_SYNC_TRAITS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extensions_service.h" | 9 #include "chrome/browser/extensions/extension_service.h" |
| 10 #include "chrome/browser/sync/syncable/model_type.h" | 10 #include "chrome/browser/sync/syncable/model_type.h" |
| 11 #include "chrome/browser/sync/glue/extension_util.h" | 11 #include "chrome/browser/sync/glue/extension_util.h" |
| 12 | 12 |
| 13 namespace sync_api { | 13 namespace sync_api { |
| 14 class BaseNode; | 14 class BaseNode; |
| 15 class WriteNode; | 15 class WriteNode; |
| 16 } // namespace sync_api | 16 } // namespace sync_api |
| 17 | 17 |
| 18 namespace sync_pb { | 18 namespace sync_pb { |
| 19 class ExtensionSpecifics; | 19 class ExtensionSpecifics; |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 // Gets traits for extensions sync. | 71 // Gets traits for extensions sync. |
| 72 ExtensionSyncTraits GetExtensionSyncTraits(); | 72 ExtensionSyncTraits GetExtensionSyncTraits(); |
| 73 | 73 |
| 74 // Gets traits for apps sync. | 74 // Gets traits for apps sync. |
| 75 ExtensionSyncTraits GetAppSyncTraits(); | 75 ExtensionSyncTraits GetAppSyncTraits(); |
| 76 | 76 |
| 77 } // namespace browser_sync | 77 } // namespace browser_sync |
| 78 | 78 |
| 79 #endif // CHROME_BROWSER_SYNC_GLUE_EXTENSION_SYNC_TRAITS_H_ | 79 #endif // CHROME_BROWSER_SYNC_GLUE_EXTENSION_SYNC_TRAITS_H_ |
| OLD | NEW |