| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/chromeos/drive/drive_pref_names.h" | |
| 6 | |
| 7 namespace drive { | |
| 8 namespace prefs { | |
| 9 | |
| 10 // A boolean pref to disable Google Drive integration. | |
| 11 // The pref prefix should remain as "gdata" for backward compatibility. | |
| 12 const char kDisableDrive[] = "gdata.disabled"; | |
| 13 | |
| 14 // A boolean pref to disable Drive over cellular connections. | |
| 15 // The pref prefix should remain as "gdata" for backward compatibility. | |
| 16 const char kDisableDriveOverCellular[] = "gdata.cellular.disabled"; | |
| 17 | |
| 18 // A boolean pref to disable hosted files on Drive. | |
| 19 // The pref prefix should remain as "gdata" for backward compatibility. | |
| 20 const char kDisableDriveHostedFiles[] = "gdata.hosted_files.disabled"; | |
| 21 | |
| 22 } // namespace prefs | |
| 23 } // namespace drive | |
| OLD | NEW |