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 #include "chrome/browser/extensions/settings/setting_sync_data.h" | 5 #include "chrome/browser/extensions/api/storage/setting_sync_data.h" |
6 | 6 |
7 #include "base/json/json_reader.h" | 7 #include "base/json/json_reader.h" |
8 #include "base/json/json_writer.h" | 8 #include "base/json/json_writer.h" |
9 #include "sync/api/sync_data.h" | 9 #include "sync/api/sync_data.h" |
10 #include "sync/protocol/app_setting_specifics.pb.h" | 10 #include "sync/protocol/app_setting_specifics.pb.h" |
11 #include "sync/protocol/extension_setting_specifics.pb.h" | 11 #include "sync/protocol/extension_setting_specifics.pb.h" |
12 #include "sync/protocol/sync.pb.h" | 12 #include "sync/protocol/sync.pb.h" |
13 | 13 |
14 namespace extensions { | 14 namespace extensions { |
15 | 15 |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 : change_type_(change_type), | 93 : change_type_(change_type), |
94 extension_id_(extension_id), | 94 extension_id_(extension_id), |
95 key_(key), | 95 key_(key), |
96 value_(value.Pass()) { | 96 value_(value.Pass()) { |
97 DCHECK(value_.get()); | 97 DCHECK(value_.get()); |
98 } | 98 } |
99 | 99 |
100 SettingSyncData::Internal::~Internal() {} | 100 SettingSyncData::Internal::~Internal() {} |
101 | 101 |
102 } // namespace extensions | 102 } // namespace extensions |
OLD | NEW |