| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 const wchar_t kBrowserWindowPlacement[] = L"browser.window_placement"; | 420 const wchar_t kBrowserWindowPlacement[] = L"browser.window_placement"; |
| 421 | 421 |
| 422 // A collection of position, size, and other data relating to the task | 422 // A collection of position, size, and other data relating to the task |
| 423 // manager window to restore on startup. | 423 // manager window to restore on startup. |
| 424 const wchar_t kTaskManagerWindowPlacement[] = L"task_manager.window_placement"; | 424 const wchar_t kTaskManagerWindowPlacement[] = L"task_manager.window_placement"; |
| 425 | 425 |
| 426 // A collection of position, size, and other data relating to the page info | 426 // A collection of position, size, and other data relating to the page info |
| 427 // window to restore on startup. | 427 // window to restore on startup. |
| 428 const wchar_t kPageInfoWindowPlacement[] = L"page_info.window_placement"; | 428 const wchar_t kPageInfoWindowPlacement[] = L"page_info.window_placement"; |
| 429 | 429 |
| 430 // A collection of position, size, and other data relating to the keyword |
| 431 // editor window to restore on startup. |
| 432 const wchar_t kKeywordEditorWindowPlacement[] = |
| 433 L"keyword_editor.window_placement"; |
| 434 |
| 430 // An integer specifying the total number of bytes to be used by the | 435 // An integer specifying the total number of bytes to be used by the |
| 431 // renderer's in-memory cache of objects. | 436 // renderer's in-memory cache of objects. |
| 432 const wchar_t kMemoryCacheSize[] = L"renderer.memory_cache.size"; | 437 const wchar_t kMemoryCacheSize[] = L"renderer.memory_cache.size"; |
| 433 | 438 |
| 434 // String which specifies where to download files to by default. | 439 // String which specifies where to download files to by default. |
| 435 const wchar_t kDownloadDefaultDirectory[] = L"download.default_directory"; | 440 const wchar_t kDownloadDefaultDirectory[] = L"download.default_directory"; |
| 436 | 441 |
| 437 // Boolean that records if the download directory was changed by an | 442 // Boolean that records if the download directory was changed by an |
| 438 // upgrade a unsafe location to a safe location. | 443 // upgrade a unsafe location to a safe location. |
| 439 const wchar_t kDownloadDirUpgraded[] = L"download.directory_upgrade"; | 444 const wchar_t kDownloadDirUpgraded[] = L"download.directory_upgrade"; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 // Integer location of the split bar in the browser view. | 569 // Integer location of the split bar in the browser view. |
| 565 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 570 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
| 566 | 571 |
| 567 // 64-bit integer serialization of the base::Time when the last sync occured. | 572 // 64-bit integer serialization of the base::Time when the last sync occured. |
| 568 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 573 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
| 569 | 574 |
| 570 // Boolean specifying whether the user finished setting up sync. | 575 // Boolean specifying whether the user finished setting up sync. |
| 571 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 576 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
| 572 | 577 |
| 573 } // namespace prefs | 578 } // namespace prefs |
| OLD | NEW |