OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/browser/chromeos/drive/drive_pref_names.h" | 5 #include "components/drive/drive_pref_names.h" |
6 | 6 |
7 namespace drive { | 7 namespace drive { |
8 namespace prefs { | 8 namespace prefs { |
9 | 9 |
10 // A boolean pref to disable Google Drive integration. | 10 // A boolean pref to disable Google Drive integration. |
11 // The pref prefix should remain as "gdata" for backward compatibility. | 11 // The pref prefix should remain as "gdata" for backward compatibility. |
12 const char kDisableDrive[] = "gdata.disabled"; | 12 const char kDisableDrive[] = "gdata.disabled"; |
13 | 13 |
14 // A boolean pref to disable Drive over cellular connections. | 14 // A boolean pref to disable Drive over cellular connections. |
15 // The pref prefix should remain as "gdata" for backward compatibility. | 15 // The pref prefix should remain as "gdata" for backward compatibility. |
16 const char kDisableDriveOverCellular[] = "gdata.cellular.disabled"; | 16 const char kDisableDriveOverCellular[] = "gdata.cellular.disabled"; |
17 | 17 |
18 // A boolean pref to disable hosted files on Drive. | 18 // A boolean pref to disable hosted files on Drive. |
19 // The pref prefix should remain as "gdata" for backward compatibility. | 19 // The pref prefix should remain as "gdata" for backward compatibility. |
20 const char kDisableDriveHostedFiles[] = "gdata.hosted_files.disabled"; | 20 const char kDisableDriveHostedFiles[] = "gdata.hosted_files.disabled"; |
21 | 21 |
22 } // namespace prefs | 22 } // namespace prefs |
23 } // namespace drive | 23 } // namespace drive |
OLD | NEW |