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 CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_ |
7 #pragma once | |
8 | 7 |
9 #include "chrome/browser/extensions/extension_sync_data.h" | 8 #include "chrome/browser/extensions/extension_sync_data.h" |
10 #include "chrome/common/string_ordinal.h" | 9 #include "chrome/common/string_ordinal.h" |
11 #include "sync/api/sync_change.h" | 10 #include "sync/api/sync_change.h" |
12 | 11 |
13 namespace syncer { | 12 namespace syncer { |
14 class SyncData; | 13 class SyncData; |
15 } | 14 } |
16 | 15 |
17 namespace sync_pb { | 16 namespace sync_pb { |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 ExtensionSyncData extension_sync_data_; | 77 ExtensionSyncData extension_sync_data_; |
79 std::string notifications_client_id_; | 78 std::string notifications_client_id_; |
80 bool notifications_disabled_; | 79 bool notifications_disabled_; |
81 StringOrdinal app_launch_ordinal_; | 80 StringOrdinal app_launch_ordinal_; |
82 StringOrdinal page_ordinal_; | 81 StringOrdinal page_ordinal_; |
83 }; | 82 }; |
84 | 83 |
85 } // namespace extensions | 84 } // namespace extensions |
86 | 85 |
87 #endif // CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_ | 86 #endif // CHROME_BROWSER_EXTENSIONS_APP_SYNC_DATA_H_ |
OLD | NEW |