OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 986 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
997 | 997 |
998 // Causes the process to run as a service process. | 998 // Causes the process to run as a service process. |
999 const char kServiceProcess[] = "service"; | 999 const char kServiceProcess[] = "service"; |
1000 | 1000 |
1001 // The LSID of the account to use for the service process. | 1001 // The LSID of the account to use for the service process. |
1002 const char kServiceAccountLsid[] = "service-account-lsid"; | 1002 const char kServiceAccountLsid[] = "service-account-lsid"; |
1003 | 1003 |
1004 // See kHideIcons. | 1004 // See kHideIcons. |
1005 const char kShowIcons[] = "show-icons"; | 1005 const char kShowIcons[] = "show-icons"; |
1006 | 1006 |
1007 // If true the instant opt-in promo is shown in the omnibox. | |
1008 const char kShowInstantOptIn[] = "show-instant-opt-in"; | |
1009 | |
1010 // Renders a border around composited Render Layers to help debug and study | 1007 // Renders a border around composited Render Layers to help debug and study |
1011 // layer compositing. | 1008 // layer compositing. |
1012 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; | 1009 const char kShowCompositedLayerBorders[] = "show-composited-layer-borders"; |
1013 | 1010 |
1014 // Visibly render a border around paint rects in the web page to help debug | 1011 // Visibly render a border around paint rects in the web page to help debug |
1015 // and study painting behavior. | 1012 // and study painting behavior. |
1016 const char kShowPaintRects[] = "show-paint-rects"; | 1013 const char kShowPaintRects[] = "show-paint-rects"; |
1017 | 1014 |
1018 // Change the DCHECKS to dump memory and continue instead of displaying error | 1015 // Change the DCHECKS to dump memory and continue instead of displaying error |
1019 // dialog. This is valid only in Release mode when --enable-dcheck is | 1016 // dialog. This is valid only in Release mode when --enable-dcheck is |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1323 | 1320 |
1324 // ----------------------------------------------------------------------------- | 1321 // ----------------------------------------------------------------------------- |
1325 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1322 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1326 // | 1323 // |
1327 // You were going to just dump your switches here, weren't you? Instead, | 1324 // You were going to just dump your switches here, weren't you? Instead, |
1328 // please put them in alphabetical order above, or in order inside the | 1325 // please put them in alphabetical order above, or in order inside the |
1329 // appropriate ifdef at the bottom. The order should match the header. | 1326 // appropriate ifdef at the bottom. The order should match the header. |
1330 // ----------------------------------------------------------------------------- | 1327 // ----------------------------------------------------------------------------- |
1331 | 1328 |
1332 } // namespace switches | 1329 } // namespace switches |
OLD | NEW |