OLD | NEW |
---|---|
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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 2354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2365 // This value stores chrome icon's index in the launcher. This should be handled | 2365 // This value stores chrome icon's index in the launcher. This should be handled |
2366 // separately with app shortcut's index because of LauncherModel's backward | 2366 // separately with app shortcut's index because of LauncherModel's backward |
2367 // compatability. If we add chrome icon index to |kPinnedLauncherApps|, its | 2367 // compatability. If we add chrome icon index to |kPinnedLauncherApps|, its |
2368 // index is also stored in the |kPinnedLauncherApp| pref. It may causes | 2368 // index is also stored in the |kPinnedLauncherApp| pref. It may causes |
2369 // creating two chrome icons. | 2369 // creating two chrome icons. |
2370 const char kShelfChromeIconIndex[] = "shelf_chrome_icon_index"; | 2370 const char kShelfChromeIconIndex[] = "shelf_chrome_icon_index"; |
2371 | 2371 |
2372 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; | 2372 const char kPinnedLauncherApps[] = "pinned_launcher_apps"; |
2373 // Boolean value indicating whether to show a logout button in the ash tray. | 2373 // Boolean value indicating whether to show a logout button in the ash tray. |
2374 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; | 2374 const char kShowLogoutButtonInTray[] = "show_logout_button_in_tray"; |
2375 // Integer value in milliseconds indicating the duration of logout confirmation | |
bartfab (slow)
2013/10/30 11:17:28
Grammar nit:
"Integer value in milliseconds indic
binjin
2013/11/19 14:43:46
Done.
| |
2376 // dialog after user pressed logout button. A value of 0 indicates to sign out | |
2377 // immediately without confirmation. | |
2378 const char kLogoutDialogDurationMs[] = "logout_dialog_duration_ms"; | |
2375 // Dictionary value that holds per-display preference of shelf alignment and | 2379 // Dictionary value that holds per-display preference of shelf alignment and |
2376 // auto-hide behavior. Key of the dictionary is the id of the display, and | 2380 // auto-hide behavior. Key of the dictionary is the id of the display, and |
2377 // its value is a dictionary whose keys are kShelfAlignment and | 2381 // its value is a dictionary whose keys are kShelfAlignment and |
2378 // kShelfAutoHideBehavior. | 2382 // kShelfAutoHideBehavior. |
2379 const char kShelfPreferences[] = "shelf_preferences"; | 2383 const char kShelfPreferences[] = "shelf_preferences"; |
2380 | 2384 |
2381 // Tuning for immersive fullscreen. | 2385 // Tuning for immersive fullscreen. |
2382 const char kImmersiveModeRevealDelayMs[] = | 2386 const char kImmersiveModeRevealDelayMs[] = |
2383 "immersive_mode.reveal_delay_ms"; | 2387 "immersive_mode.reveal_delay_ms"; |
2384 const char kImmersiveModeRevealXThresholdPixels[] = | 2388 const char kImmersiveModeRevealXThresholdPixels[] = |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2555 // A dictionary pref which maps profile names to dictionary values which hold | 2559 // A dictionary pref which maps profile names to dictionary values which hold |
2556 // hashes of profile prefs that we track to detect changes that happen outside | 2560 // hashes of profile prefs that we track to detect changes that happen outside |
2557 // of Chrome. | 2561 // of Chrome. |
2558 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; | 2562 const char kProfilePreferenceHashes[] = "profile.preference_hashes"; |
2559 | 2563 |
2560 // Stores a pair of local time and corresponding network time to bootstrap | 2564 // Stores a pair of local time and corresponding network time to bootstrap |
2561 // network time tracker when browser starts. | 2565 // network time tracker when browser starts. |
2562 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; | 2566 const char kNetworkTimeMapping[] = "profile.network_time_mapping"; |
2563 | 2567 |
2564 } // namespace prefs | 2568 } // namespace prefs |
OLD | NEW |