Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(206)

Side by Side Diff: components/drive/drive_pref_names.cc

Issue 1246753003: Move a subset of chrome/browser/chromeos/drive into components/drive (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698