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_EXTENSION_SYNC_DATA_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
| 10 #include "base/gtest_prod_util.h" |
10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
11 #include "base/version.h" | 12 #include "base/version.h" |
12 #include "extensions/common/constants.h" | 13 #include "extensions/common/constants.h" |
13 #include "sync/api/string_ordinal.h" | 14 #include "sync/api/string_ordinal.h" |
14 #include "sync/api/sync_change.h" | 15 #include "sync/api/sync_change.h" |
15 #include "url/gurl.h" | 16 #include "url/gurl.h" |
16 | 17 |
17 namespace syncer { | 18 namespace syncer { |
18 class SyncData; | 19 class SyncData; |
19 } | 20 } |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 extensions::LaunchType launch_type_; | 164 extensions::LaunchType launch_type_; |
164 std::string bookmark_app_url_; | 165 std::string bookmark_app_url_; |
165 std::string bookmark_app_description_; | 166 std::string bookmark_app_description_; |
166 std::string bookmark_app_icon_color_; | 167 std::string bookmark_app_icon_color_; |
167 std::vector<LinkedAppIconInfo> linked_icons_; | 168 std::vector<LinkedAppIconInfo> linked_icons_; |
168 }; | 169 }; |
169 | 170 |
170 } // namespace extensions | 171 } // namespace extensions |
171 | 172 |
172 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ | 173 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ |
OLD | NEW |