Chromium Code Reviews| 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/macros.h" | 7 #include "base/macros.h" |
| 8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
| 9 #include "chrome/common/features.h" | 9 #include "chrome/common/features.h" |
| 10 #include "chrome/common/pref_font_webkit_names.h" | 10 #include "chrome/common/pref_font_webkit_names.h" |
| (...skipping 2545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2556 // Timestamp of the clipboard's last modified time, stored in base::Time's | 2556 // Timestamp of the clipboard's last modified time, stored in base::Time's |
| 2557 // internal format (int64) in local store. (I.e., this is not a per-profile | 2557 // internal format (int64) in local store. (I.e., this is not a per-profile |
| 2558 // pref.) | 2558 // pref.) |
| 2559 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; | 2559 const char kClipboardLastModifiedTime[] = "ui.clipboard.last_modified_time"; |
| 2560 #endif | 2560 #endif |
| 2561 | 2561 |
| 2562 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 2562 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
| 2563 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; | 2563 const char kOfflinePrefetchBackoff[] = "offline_prefetch.backoff"; |
| 2564 #endif | 2564 #endif |
| 2565 | 2565 |
| 2566 #if defined(OS_WIN) | |
|
gab
2017/06/14 17:08:12
I'm sure there's an existing OS_WIN block above.
ftirelo
2017/06/15 03:41:24
Done.
| |
| 2567 const char kChromeCleanerResetPending[] = "chrome_cleaner.reset_pending"; | |
| 2568 #endif | |
| 2569 | |
| 2566 } // namespace prefs | 2570 } // namespace prefs |
| OLD | NEW |