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

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

Issue 616763002: Importing certain bookmarks from firefox and HTML file as search engines. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed dependency issue. Created 5 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 // Singly or Multiply-included shared traits file depending on circumstances. 5 // Singly or Multiply-included shared traits file depending on circumstances.
6 // This allows the use of IPC serialization macros in more than one IPC message 6 // This allows the use of IPC serialization macros in more than one IPC message
7 // file. 7 // file.
8 #ifndef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ 8 #ifndef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_
9 #define CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ 9 #define CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 IPC_STRUCT_TRAITS_MEMBER(title) 55 IPC_STRUCT_TRAITS_MEMBER(title)
56 IPC_STRUCT_TRAITS_MEMBER(creation_time) 56 IPC_STRUCT_TRAITS_MEMBER(creation_time)
57 IPC_STRUCT_TRAITS_END() 57 IPC_STRUCT_TRAITS_END()
58 58
59 IPC_STRUCT_TRAITS_BEGIN(ImportedFaviconUsage) 59 IPC_STRUCT_TRAITS_BEGIN(ImportedFaviconUsage)
60 IPC_STRUCT_TRAITS_MEMBER(favicon_url) 60 IPC_STRUCT_TRAITS_MEMBER(favicon_url)
61 IPC_STRUCT_TRAITS_MEMBER(png_data) 61 IPC_STRUCT_TRAITS_MEMBER(png_data)
62 IPC_STRUCT_TRAITS_MEMBER(urls) 62 IPC_STRUCT_TRAITS_MEMBER(urls)
63 IPC_STRUCT_TRAITS_END() 63 IPC_STRUCT_TRAITS_END()
64 64
65 IPC_STRUCT_TRAITS_BEGIN(importer::URLKeywordInfo) 65 IPC_STRUCT_TRAITS_BEGIN(importer::SearchEngineInfo)
66 IPC_STRUCT_TRAITS_MEMBER(url) 66 IPC_STRUCT_TRAITS_MEMBER(url)
67 IPC_STRUCT_TRAITS_MEMBER(keyword) 67 IPC_STRUCT_TRAITS_MEMBER(keyword)
68 IPC_STRUCT_TRAITS_MEMBER(display_name) 68 IPC_STRUCT_TRAITS_MEMBER(display_name)
69 IPC_STRUCT_TRAITS_END() 69 IPC_STRUCT_TRAITS_END()
70 70
71 IPC_STRUCT_TRAITS_BEGIN(ImporterAutofillFormDataEntry) 71 IPC_STRUCT_TRAITS_BEGIN(ImporterAutofillFormDataEntry)
72 IPC_STRUCT_TRAITS_MEMBER(name) 72 IPC_STRUCT_TRAITS_MEMBER(name)
73 IPC_STRUCT_TRAITS_MEMBER(value) 73 IPC_STRUCT_TRAITS_MEMBER(value)
74 IPC_STRUCT_TRAITS_MEMBER(times_used) 74 IPC_STRUCT_TRAITS_MEMBER(times_used)
75 IPC_STRUCT_TRAITS_MEMBER(first_used) 75 IPC_STRUCT_TRAITS_MEMBER(first_used)
76 IPC_STRUCT_TRAITS_MEMBER(last_used) 76 IPC_STRUCT_TRAITS_MEMBER(last_used)
77 IPC_STRUCT_TRAITS_END() 77 IPC_STRUCT_TRAITS_END()
78 78
79 #if defined(OS_WIN) 79 #if defined(OS_WIN)
80 IPC_STRUCT_TRAITS_BEGIN(importer::ImporterIE7PasswordInfo) 80 IPC_STRUCT_TRAITS_BEGIN(importer::ImporterIE7PasswordInfo)
81 IPC_STRUCT_TRAITS_MEMBER(url_hash) 81 IPC_STRUCT_TRAITS_MEMBER(url_hash)
82 IPC_STRUCT_TRAITS_MEMBER(encrypted_data) 82 IPC_STRUCT_TRAITS_MEMBER(encrypted_data)
83 IPC_STRUCT_TRAITS_MEMBER(date_created) 83 IPC_STRUCT_TRAITS_MEMBER(date_created)
84 IPC_STRUCT_TRAITS_END() 84 IPC_STRUCT_TRAITS_END()
85 #endif 85 #endif
86 86
87 #endif // CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ 87 #endif // CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698