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

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

Issue 1658723007: Prototype handling of Intents in Custom Tabs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rearranged Created 4 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 10
(...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after
1329 // Forces the new features summary to be displayed below the update menu item. 1329 // Forces the new features summary to be displayed below the update menu item.
1330 const char kForceShowUpdateMenuItemNewFeaturesSummary[] = 1330 const char kForceShowUpdateMenuItemNewFeaturesSummary[] =
1331 "use_new_features_summary"; 1331 "use_new_features_summary";
1332 1332
1333 // Forces a custom summary to be displayed below the update menu item. 1333 // Forces a custom summary to be displayed below the update menu item.
1334 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary"; 1334 const char kForceShowUpdateMenuItemCustomSummary[] = "custom_summary";
1335 1335
1336 // Forces the update menu badge to show. 1336 // Forces the update menu badge to show.
1337 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge"; 1337 const char kForceShowUpdateMenuBadge[] = "force-show-update-menu-badge";
1338 1338
1339 // Specifies a particular flavor of Herb to experiment with.
1340 const char kHerbFlavor[] = "herb-flavor";
1341
1339 // Sets the market URL for Chrome for use in testing. 1342 // Sets the market URL for Chrome for use in testing.
1340 const char kMarketUrlForTesting[] = "market-url-for-testing"; 1343 const char kMarketUrlForTesting[] = "market-url-for-testing";
1341 #endif // defined(OS_ANDROID) 1344 #endif // defined(OS_ANDROID)
1342 1345
1343 #if defined(OS_WIN) || defined(OS_LINUX) 1346 #if defined(OS_WIN) || defined(OS_LINUX)
1344 extern const char kEnableInputImeAPI[] = "enable-input-ime-api"; 1347 extern const char kEnableInputImeAPI[] = "enable-input-ime-api";
1345 extern const char kDisableInputImeAPI[] = "disable-input-ime-api"; 1348 extern const char kDisableInputImeAPI[] = "disable-input-ime-api";
1346 #endif 1349 #endif
1347 1350
1348 bool AboutInSettingsEnabled() { 1351 bool AboutInSettingsEnabled() {
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
1396 1399
1397 // ----------------------------------------------------------------------------- 1400 // -----------------------------------------------------------------------------
1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1399 // 1402 //
1400 // You were going to just dump your switches here, weren't you? Instead, please 1403 // You were going to just dump your switches here, weren't you? Instead, please
1401 // put them in alphabetical order above, or in order inside the appropriate 1404 // put them in alphabetical order above, or in order inside the appropriate
1402 // ifdef at the bottom. The order should match the header. 1405 // ifdef at the bottom. The order should match the header.
1403 // ----------------------------------------------------------------------------- 1406 // -----------------------------------------------------------------------------
1404 1407
1405 } // namespace switches 1408 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698