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

Side by Side Diff: chrome/common/pref_names.h

Issue 2727813002: Options/MD Settings: use new prefs to drive import data dialog (Closed)
Patch Set: Created 3 years, 9 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Constants for the names of various preferences, for easier changing. 5 // Constants for the names of various preferences, for easier changing.
6 6
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ 7 #ifndef CHROME_COMMON_PREF_NAMES_H_
8 #define CHROME_COMMON_PREF_NAMES_H_ 8 #define CHROME_COMMON_PREF_NAMES_H_
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 #if !defined(OS_ANDROID) 381 #if !defined(OS_ANDROID)
382 extern const char kPinnedTabs[]; 382 extern const char kPinnedTabs[];
383 #endif 383 #endif
384 384
385 extern const char kDisable3DAPIs[]; 385 extern const char kDisable3DAPIs[];
386 extern const char kEnableDeprecatedWebPlatformFeatures[]; 386 extern const char kEnableDeprecatedWebPlatformFeatures[];
387 extern const char kEnableHyperlinkAuditing[]; 387 extern const char kEnableHyperlinkAuditing[];
388 extern const char kEnableReferrers[]; 388 extern const char kEnableReferrers[];
389 extern const char kEnableDoNotTrack[]; 389 extern const char kEnableDoNotTrack[];
390 390
391 // Used at first run.
391 extern const char kImportAutofillFormData[]; 392 extern const char kImportAutofillFormData[];
392 extern const char kImportBookmarks[]; 393 extern const char kImportBookmarks[];
393 extern const char kImportHistory[]; 394 extern const char kImportHistory[];
394 extern const char kImportHomepage[]; 395 extern const char kImportHomepage[];
395 extern const char kImportSavedPasswords[]; 396 extern const char kImportSavedPasswords[];
396 extern const char kImportSearchEngine[]; 397 extern const char kImportSearchEngine[];
397 398
399 // Used in the "Import Data" dialog in settings (chrome://settings/importData).
gab 2017/03/02 01:47:32 No comments in the .h like other prefs.
Dan Beam 2017/03/02 02:00:58 finnnne
400 extern const char kImportDialogAutofillFormData[];
401 extern const char kImportDialogBookmarks[];
402 extern const char kImportDialogHistory[];
403 extern const char kImportDialogSavedPasswords[];
404 extern const char kImportDialogSearchEngine[];
405
398 extern const char kProfileAvatarIndex[]; 406 extern const char kProfileAvatarIndex[];
399 extern const char kProfileUsingDefaultName[]; 407 extern const char kProfileUsingDefaultName[];
400 extern const char kProfileName[]; 408 extern const char kProfileName[];
401 extern const char kProfileUsingDefaultAvatar[]; 409 extern const char kProfileUsingDefaultAvatar[];
402 extern const char kProfileUsingGAIAAvatar[]; 410 extern const char kProfileUsingGAIAAvatar[];
403 extern const char kSupervisedUserId[]; 411 extern const char kSupervisedUserId[];
404 412
405 extern const char kProfileGAIAInfoUpdateTime[]; 413 extern const char kProfileGAIAInfoUpdateTime[];
406 extern const char kProfileGAIAInfoPictureURL[]; 414 extern const char kProfileGAIAInfoPictureURL[];
407 415
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 extern const char kBookmarksBubbleIOSPromoDismissed[]; 902 extern const char kBookmarksBubbleIOSPromoDismissed[];
895 extern const char kNumberBookmarksFootNoteIOSPromoShown[]; 903 extern const char kNumberBookmarksFootNoteIOSPromoShown[];
896 extern const char kBookmarksFootNoteIOSPromoDismissed[]; 904 extern const char kBookmarksFootNoteIOSPromoDismissed[];
897 extern const char kNumberHistoryPageIOSPromoShown[]; 905 extern const char kNumberHistoryPageIOSPromoShown[];
898 extern const char kHistoryPageIOSPromoDismissed[]; 906 extern const char kHistoryPageIOSPromoDismissed[];
899 #endif 907 #endif
900 908
901 } // namespace prefs 909 } // namespace prefs
902 910
903 #endif // CHROME_COMMON_PREF_NAMES_H_ 911 #endif // CHROME_COMMON_PREF_NAMES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698