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

Side by Side Diff: chromeos/chromeos_switches.cc

Issue 2320813002: arc: Enable silent PlayStore Sign-In. (Closed)
Patch Set: nits Created 4 years, 3 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
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chromeos/chromeos_switches.h" 5 #include "chromeos/chromeos_switches.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/metrics/field_trial.h" 10 #include "base/metrics/field_trial.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // in testing where we do want to go through the permission flow even in dev 54 // in testing where we do want to go through the permission flow even in dev
55 // mode. This can be enabled by this flag. 55 // mode. This can be enabled by this flag.
56 const char kAllowRAInDevMode[] = "allow-ra-in-dev-mode"; 56 const char kAllowRAInDevMode[] = "allow-ra-in-dev-mode";
57 57
58 // Path for app's OEM manifest file. 58 // Path for app's OEM manifest file.
59 const char kAppOemManifestFile[] = "app-mode-oem-manifest"; 59 const char kAppOemManifestFile[] = "app-mode-oem-manifest";
60 60
61 // Signals the availability of the ARC instance on this device. 61 // Signals the availability of the ARC instance on this device.
62 const char kArcAvailable[] = "arc-available"; 62 const char kArcAvailable[] = "arc-available";
63 63
64 // Specifies ARC authorization endpoint to enable automatic sign-in in OptIn
65 // flow.
66 const char kArcUseAuthEndpoint[] = "arc-use-auth-endpoint";
67
64 // Screenshot testing: specifies the directoru where artifacts will be stored. 68 // Screenshot testing: specifies the directoru where artifacts will be stored.
65 const char kArtifactsDir[] = "artifacts-dir"; 69 const char kArtifactsDir[] = "artifacts-dir";
66 70
67 // When wallpaper boot animation is not disabled this switch 71 // When wallpaper boot animation is not disabled this switch
68 // is used to override OOBE/sign in WebUI init type. 72 // is used to override OOBE/sign in WebUI init type.
69 // Possible values: parallel|postpone. Default: parallel. 73 // Possible values: parallel|postpone. Default: parallel.
70 const char kAshWebUIInit[] = "ash-webui-init"; 74 const char kAshWebUIInit[] = "ash-webui-init";
71 75
72 // Default large wallpaper to use for kids accounts (as path to trusted, 76 // Default large wallpaper to use for kids accounts (as path to trusted,
73 // non-user-writable JPEG file). 77 // non-user-writable JPEG file).
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess(); 477 base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
474 if (!command_line->HasSwitch(kTestCrosGaiaIdMigration)) 478 if (!command_line->HasSwitch(kTestCrosGaiaIdMigration))
475 return false; 479 return false;
476 480
477 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) == 481 return command_line->GetSwitchValueASCII(kTestCrosGaiaIdMigration) ==
478 kTestCrosGaiaIdMigrationStarted; 482 kTestCrosGaiaIdMigrationStarted;
479 } 483 }
480 484
481 } // namespace switches 485 } // namespace switches
482 } // namespace chromeos 486 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/chromeos_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698