X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fchrome%2Fcommon%2Fimporter%2Fimporter_data_types.h;h=d9594e76d08b4c5cb643ce808a8dde78a3cfb910;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=57902095e349a050ed3a1ef5659f4aba94b4002b;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/chrome/common/importer/importer_data_types.h b/src/chrome/common/importer/importer_data_types.h index 5790209..d9594e7 100644 --- a/src/chrome/common/importer/importer_data_types.h +++ b/src/chrome/common/importer/importer_data_types.h @@ -21,14 +21,15 @@ namespace importer { // An enumeration of the type of data that can be imported. enum ImportItem { - NONE = 0, - HISTORY = 1 << 0, - FAVORITES = 1 << 1, - COOKIES = 1 << 2, // Not supported yet. - PASSWORDS = 1 << 3, - SEARCH_ENGINES = 1 << 4, - HOME_PAGE = 1 << 5, - ALL = (1 << 6) - 1 // All the bits should be 1, hence the -1. + NONE = 0, + HISTORY = 1 << 0, + FAVORITES = 1 << 1, + COOKIES = 1 << 2, // Not supported yet. + PASSWORDS = 1 << 3, + SEARCH_ENGINES = 1 << 4, + HOME_PAGE = 1 << 5, + AUTOFILL_FORM_DATA = 1 << 6, + ALL = (1 << 7) - 1 // All the bits should be 1, hence the -1. }; // Information about a profile needed by an importer to do import work.