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

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 2694893002: Integrate SMS service with Desktop iOS promotion (Closed)
Patch Set: Addressing comments/Update phone number usage/Change view-controller relation/Pending tests 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
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 "chrome/common/chrome_switches.h" 5 #include "chrome/common/chrome_switches.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 457 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 const char kFastStart[] = "fast-start"; 468 const char kFastStart[] = "fast-start";
469 469
470 // Forces Android application mode. This hides certain system UI elements and 470 // Forces Android application mode. This hides certain system UI elements and
471 // forces the app to be installed if it hasn't been already. 471 // forces the app to be installed if it hasn't been already.
472 const char kForceAndroidAppMode[] = "force-android-app-mode"; 472 const char kForceAndroidAppMode[] = "force-android-app-mode";
473 473
474 // Forces application mode. This hides certain system UI elements and forces 474 // Forces application mode. This hides certain system UI elements and forces
475 // the app to be installed if it hasn't been already. 475 // the app to be installed if it hasn't been already.
476 const char kForceAppMode[] = "force-app-mode"; 476 const char kForceAppMode[] = "force-app-mode";
477 477
478 // Forces Desktop to iOS promotion to appear in windows whenever an entrypoint
479 // is triggered.
480 const char kForceDesktopIOSPromotion[] = "force-desktop-ios-promotion";
481
478 // Displays the First Run experience when the browser is started, regardless of 482 // Displays the First Run experience when the browser is started, regardless of
479 // whether or not it's actually the First Run (this overrides kNoFirstRun). 483 // whether or not it's actually the First Run (this overrides kNoFirstRun).
480 const char kForceFirstRun[] = "force-first-run"; 484 const char kForceFirstRun[] = "force-first-run";
481 485
482 // Forces Chrome to use localNTP instead of server (GWS) NTP. 486 // Forces Chrome to use localNTP instead of server (GWS) NTP.
483 const char kForceLocalNtp[] = "force-local-ntp"; 487 const char kForceLocalNtp[] = "force-local-ntp";
484 488
485 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data 489 // Forces additional Chrome Variation Ids that will be sent in X-Client-Data
486 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids 490 // header, specified as a 64-bit encoded list of numeric experiment ids. Ids
487 // prefixed with the character "t" will be treated as Trigger Variation Ids. 491 // prefixed with the character "t" will be treated as Trigger Variation Ids.
(...skipping 679 matching lines...) Expand 10 before | Expand all | Expand 10 after
1167 1171
1168 // ----------------------------------------------------------------------------- 1172 // -----------------------------------------------------------------------------
1169 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1173 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1170 // 1174 //
1171 // You were going to just dump your switches here, weren't you? Instead, please 1175 // You were going to just dump your switches here, weren't you? Instead, please
1172 // put them in alphabetical order above, or in order inside the appropriate 1176 // put them in alphabetical order above, or in order inside the appropriate
1173 // ifdef at the bottom. The order should match the header. 1177 // ifdef at the bottom. The order should match the header.
1174 // ----------------------------------------------------------------------------- 1178 // -----------------------------------------------------------------------------
1175 1179
1176 } // namespace switches 1180 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698