OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 // survey in the event of uninstallation. | 374 // survey in the event of uninstallation. |
375 const wchar_t kUninstallMetricsPageLoadCount[] = | 375 const wchar_t kUninstallMetricsPageLoadCount[] = |
376 L"uninstall_metrics.page_load_count"; | 376 L"uninstall_metrics.page_load_count"; |
377 const wchar_t kUninstallLaunchCount[] = L"uninstall_metrics.launch_count"; | 377 const wchar_t kUninstallLaunchCount[] = L"uninstall_metrics.launch_count"; |
378 const wchar_t kUninstallMetricsUptimeSec[] = L"uninstall_metrics.uptime_sec"; | 378 const wchar_t kUninstallMetricsUptimeSec[] = L"uninstall_metrics.uptime_sec"; |
379 const wchar_t kUninstallLastLaunchTimeSec[] = | 379 const wchar_t kUninstallLastLaunchTimeSec[] = |
380 L"uninstall_metrics.last_launch_time_sec"; | 380 L"uninstall_metrics.last_launch_time_sec"; |
381 const wchar_t kUninstallLastObservedRunTimeSec[] = | 381 const wchar_t kUninstallLastObservedRunTimeSec[] = |
382 L"uninstall_metrics.last_observed_running_time_sec"; | 382 L"uninstall_metrics.last_observed_running_time_sec"; |
383 | 383 |
384 // If true, the user will be prompted to manually launch renderer processes. | |
385 const wchar_t kStartRenderersManually[] = L"renderer.start_manually"; | |
386 | |
387 // A collection of position, size, and other data relating to the browser | 384 // A collection of position, size, and other data relating to the browser |
388 // window to restore on startup. | 385 // window to restore on startup. |
389 const wchar_t kBrowserWindowPlacement[] = L"browser.window_placement"; | 386 const wchar_t kBrowserWindowPlacement[] = L"browser.window_placement"; |
390 | 387 |
391 // A collection of position, size, and other data relating to the task | 388 // A collection of position, size, and other data relating to the task |
392 // manager window to restore on startup. | 389 // manager window to restore on startup. |
393 const wchar_t kTaskManagerWindowPlacement[] = L"task_manager.window_placement"; | 390 const wchar_t kTaskManagerWindowPlacement[] = L"task_manager.window_placement"; |
394 | 391 |
395 // A collection of position, size, and other data relating to the page info | 392 // A collection of position, size, and other data relating to the page info |
396 // window to restore on startup. | 393 // window to restore on startup. |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
479 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; | 476 L"user_experience_metrics.num_folders_in_other_bookmark_folder"; |
480 | 477 |
481 // Number of keywords. | 478 // Number of keywords. |
482 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; | 479 const wchar_t kNumKeywords[] = L"user_experience_metrics.num_keywords"; |
483 | 480 |
484 // Whether Extensions or User Scripts are enabled. | 481 // Whether Extensions or User Scripts are enabled. |
485 const wchar_t kEnableExtensions[] = L"extensions.enabled"; | 482 const wchar_t kEnableExtensions[] = L"extensions.enabled"; |
486 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; | 483 const wchar_t kEnableUserScripts[] = L"extensions.user_scripts_enabled"; |
487 | 484 |
488 } // namespace prefs | 485 } // namespace prefs |
OLD | NEW |