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 // Constants for the names of various sync preferences, for easier changing. | 5 // Constants for the names of various sync preferences, for easier changing. |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 namespace sync_driver { | 9 namespace sync_driver { |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
58 | 58 |
59 #if defined(OS_CHROMEOS) | 59 #if defined(OS_CHROMEOS) |
60 extern const char kSyncSpareBootstrapToken[]; | 60 extern const char kSyncSpareBootstrapToken[]; |
61 #endif // defined(OS_CHROMEOS) | 61 #endif // defined(OS_CHROMEOS) |
62 | 62 |
63 extern const char kSyncRemainingRollbackTries[]; | 63 extern const char kSyncRemainingRollbackTries[]; |
64 extern const char kSyncFirstSyncTime[]; | 64 extern const char kSyncFirstSyncTime[]; |
65 | 65 |
66 extern const char kSyncPassphrasePrompted[]; | 66 extern const char kSyncPassphrasePrompted[]; |
67 | 67 |
68 extern const char kSyncMemoryPressureReceivings[]; | |
69 extern const char kSyncShutdownUnnormal[]; | |
stanisc
2015/05/15 20:31:04
Unnormal -> Abnormal
Gang Wu
2015/05/15 21:13:47
Done.
| |
70 | |
68 } // namespace prefs | 71 } // namespace prefs |
69 | 72 |
70 } // namespace sync_driver | 73 } // namespace sync_driver |
OLD | NEW |