Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(530)

Side by Side Diff: chrome/common/importer/profile_import_process_messages.h

Issue 1548153002: Switch to standard integer types in chrome/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Multiply-included message file, no traditonal include guard. 5 // Multiply-included message file, no traditonal include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h"
10 #include "base/strings/string16.h" 9 #include "base/strings/string16.h"
11 #include "base/values.h" 10 #include "base/values.h"
11 #include "build/build_config.h"
12 #include "chrome/common/common_param_traits_macros.h" 12 #include "chrome/common/common_param_traits_macros.h"
13 #include "chrome/common/importer/imported_bookmark_entry.h" 13 #include "chrome/common/importer/imported_bookmark_entry.h"
14 #include "chrome/common/importer/importer_autofill_form_data_entry.h" 14 #include "chrome/common/importer/importer_autofill_form_data_entry.h"
15 #include "chrome/common/importer/importer_data_types.h" 15 #include "chrome/common/importer/importer_data_types.h"
16 #include "chrome/common/importer/importer_url_row.h" 16 #include "chrome/common/importer/importer_url_row.h"
17 #include "chrome/common/importer/profile_import_process_param_traits_macros.h" 17 #include "chrome/common/importer/profile_import_process_param_traits_macros.h"
18 #include "components/autofill/content/common/autofill_param_traits_macros.h" 18 #include "components/autofill/content/common/autofill_param_traits_macros.h"
19 #include "components/autofill/core/common/password_form.h" 19 #include "components/autofill/core/common/password_form.h"
20 #include "components/favicon_base/favicon_usage_data.h" 20 #include "components/favicon_base/favicon_usage_data.h"
21 #include "content/public/common/common_param_traits.h" 21 #include "content/public/common/common_param_traits.h"
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportStart, 96 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportStart,
97 int /* total number of entries to be imported */) 97 int /* total number of entries to be imported */)
98 98
99 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportGroup, 99 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportGroup,
100 std::vector<ImporterAutofillFormDataEntry>) 100 std::vector<ImporterAutofillFormDataEntry>)
101 101
102 #if defined(OS_WIN) 102 #if defined(OS_WIN)
103 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyIE7PasswordInfo, 103 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyIE7PasswordInfo,
104 importer::ImporterIE7PasswordInfo) // password_info 104 importer::ImporterIE7PasswordInfo) // password_info
105 #endif 105 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698