| 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 // Constants for the names of preferences related to Google Drive. | 5 // Constants for the names of preferences related to Google Drive. |
| 6 | 6 |
| 7 #ifndef CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PREF_NAMES_H_ | 7 #ifndef COMPONENTS_DRIVE_DRIVE_PREF_NAMES_H_ |
| 8 #define CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PREF_NAMES_H_ | 8 #define COMPONENTS_DRIVE_DRIVE_PREF_NAMES_H_ |
| 9 | 9 |
| 10 namespace drive { | 10 namespace drive { |
| 11 namespace prefs { | 11 namespace prefs { |
| 12 | 12 |
| 13 extern const char kDisableDrive[]; | 13 extern const char kDisableDrive[]; |
| 14 extern const char kDisableDriveOverCellular[]; | 14 extern const char kDisableDriveOverCellular[]; |
| 15 extern const char kDisableDriveHostedFiles[]; | 15 extern const char kDisableDriveHostedFiles[]; |
| 16 | 16 |
| 17 } // namespace prefs | 17 } // namespace prefs |
| 18 } // namespace drive | 18 } // namespace drive |
| 19 | 19 |
| 20 #endif // CHROME_BROWSER_CHROMEOS_DRIVE_DRIVE_PREF_NAMES_H_ | 20 #endif // COMPONENTS_DRIVE_DRIVE_PREF_NAMES_H_ |
| OLD | NEW |