| 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/version.h" | 10 #include "base/version.h" |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 const std::string& name() const { return name_; } | 65 const std::string& name() const { return name_; } |
| 66 | 66 |
| 67 private: | 67 private: |
| 68 // Populate this class from sync inputs. | 68 // Populate this class from sync inputs. |
| 69 void PopulateFromSyncData(const syncer::SyncData& sync_data); | 69 void PopulateFromSyncData(const syncer::SyncData& sync_data); |
| 70 | 70 |
| 71 std::string id_; | 71 std::string id_; |
| 72 bool uninstalled_; | 72 bool uninstalled_; |
| 73 bool enabled_; | 73 bool enabled_; |
| 74 bool incognito_enabled_; | 74 bool incognito_enabled_; |
| 75 bool remote_install_; |
| 75 Version version_; | 76 Version version_; |
| 76 GURL update_url_; | 77 GURL update_url_; |
| 77 std::string name_; | 78 std::string name_; |
| 78 }; | 79 }; |
| 79 | 80 |
| 80 } // namespace extensions | 81 } // namespace extensions |
| 81 | 82 |
| 82 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ | 83 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SYNC_DATA_H_ |
| OLD | NEW |