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

Side by Side Diff: google_apis/drive/drive_switches.cc

Issue 2693093002: Fetch file metadata of files under Team Drives. (Closed)
Patch Set: Revert addition of unused string to .grdp. The flag is not yet exposed to about:flags. Created 3 years, 10 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
(Empty)
1 #include "base/command_line.h"
2 #include "google_apis/drive/drive_switches.h"
3
4 namespace google_apis {
5
6 // Enables or disables Team Drives integration.
7 const char kEnableTeamDrives[] = "team-drives";
8
9 bool IsTeamDrivesEnabled() {
10 return base::CommandLine::ForCurrentProcess()->HasSwitch(
11 kEnableTeamDrives);
12 }
13
14 } // namespace google_apis
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698