OLD | NEW |
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 #include "ios/chrome/browser/pref_names.h" | 5 #include "ios/chrome/browser/pref_names.h" |
6 | 6 |
7 namespace ios { | 7 namespace ios { |
8 namespace prefs { | 8 namespace prefs { |
9 | 9 |
10 // Preferences in ios::prefs:: must have the same value as the corresponding | 10 // Preferences in ios::prefs:: must have the same value as the corresponding |
(...skipping 15 matching lines...) Expand all Loading... |
26 // Preference that keep information about where to create a new bookmark. | 26 // Preference that keep information about where to create a new bookmark. |
27 const char kIosBookmarkFolderDefault[] = "ios.bookmark.default_folder"; | 27 const char kIosBookmarkFolderDefault[] = "ios.bookmark.default_folder"; |
28 | 28 |
29 // Preference that hold a boolean indicating if the user has already dismissed | 29 // Preference that hold a boolean indicating if the user has already dismissed |
30 // the bookmark promo dialog. | 30 // the bookmark promo dialog. |
31 const char kIosBookmarkPromoAlreadySeen[] = "ios.bookmark.promo_already_seen"; | 31 const char kIosBookmarkPromoAlreadySeen[] = "ios.bookmark.promo_already_seen"; |
32 | 32 |
33 // The preferred SSO user for wallet payments. | 33 // The preferred SSO user for wallet payments. |
34 const char kPaymentsPreferredUserId[] = "ios.payments.preferred_user_id"; | 34 const char kPaymentsPreferredUserId[] = "ios.payments.preferred_user_id"; |
35 | 35 |
| 36 // True if the memory debugging tools should be visible. |
| 37 extern const char kShowMemoryDebuggingTools[] = |
| 38 "ios.memory.show_debugging_tools"; |
| 39 |
36 } // namespace prefs | 40 } // namespace prefs |
OLD | NEW |