| 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_AUTOFILL_PROFILE_MODEL_ASSOCIATOR_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_MODEL_ASSOCIATOR_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_MODEL_ASSOCIATOR_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_MODEL_ASSOCIATOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 std::vector<std::string> profiles_to_delete; | 190 std::vector<std::string> profiles_to_delete; |
| 191 std::vector<AutoFillProfile*> updated_profiles; | 191 std::vector<AutoFillProfile*> updated_profiles; |
| 192 std::vector<AutoFillProfile*> new_profiles; // We own these pointers. | 192 std::vector<AutoFillProfile*> new_profiles; // We own these pointers. |
| 193 ~DataBundle() { STLDeleteElements(&new_profiles); } | 193 ~DataBundle() { STLDeleteElements(&new_profiles); } |
| 194 }; | 194 }; |
| 195 | 195 |
| 196 } // namespace browser_sync | 196 } // namespace browser_sync |
| 197 | 197 |
| 198 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_MODEL_ASSOCIATOR_H_ | 198 #endif // CHROME_BROWSER_SYNC_GLUE_AUTOFILL_PROFILE_MODEL_ASSOCIATOR_H_ |
| 199 | 199 |
| OLD | NEW |