| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module chrome.mojom; | 5 module chrome.mojom; |
| 6 | 6 |
| 7 import "components/autofill/content/common/autofill_types.mojom"; | 7 import "components/autofill/content/common/autofill_types.mojom"; |
| 8 import "mojo/common/common_custom_types.mojom"; | 8 import "mojo/common/string16.mojom"; |
| 9 import "mojo/common/values.mojom"; |
| 9 import "url/mojo/url.mojom"; | 10 import "url/mojo/url.mojom"; |
| 10 | 11 |
| 11 [Native] | 12 [Native] |
| 12 struct ImportedBookmarkEntry; | 13 struct ImportedBookmarkEntry; |
| 13 | 14 |
| 14 [Native] | 15 [Native] |
| 15 struct ImporterAutofillFormDataEntry; | 16 struct ImporterAutofillFormDataEntry; |
| 16 | 17 |
| 17 [Native] | 18 [Native] |
| 18 struct SearchEngineInfo; | 19 struct SearchEngineInfo; |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 uint16 items, | 76 uint16 items, |
| 76 mojo.common.mojom.DictionaryValue localized_strings, | 77 mojo.common.mojom.DictionaryValue localized_strings, |
| 77 ProfileImportObserver observer); | 78 ProfileImportObserver observer); |
| 78 | 79 |
| 79 // Stop the importer. | 80 // Stop the importer. |
| 80 CancelImport(); | 81 CancelImport(); |
| 81 | 82 |
| 82 // Tell the importer that we're done with one item. | 83 // Tell the importer that we're done with one item. |
| 83 ReportImportItemFinished(ImportItem item); | 84 ReportImportItemFinished(ImportItem item); |
| 84 }; | 85 }; |
| OLD | NEW |