| OLD | NEW |
| 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 const char kRestoreLastSession[] = "restore-last-session"; | 753 const char kRestoreLastSession[] = "restore-last-session"; |
| 754 | 754 |
| 755 // Disable saving pages as HTML-only, disable saving pages as HTML Complete | 755 // Disable saving pages as HTML-only, disable saving pages as HTML Complete |
| 756 // (with a directory of sub-resources). Enable only saving pages as MHTML. | 756 // (with a directory of sub-resources). Enable only saving pages as MHTML. |
| 757 // See http://crbug.com/120416 for how to remove this switch. | 757 // See http://crbug.com/120416 for how to remove this switch. |
| 758 const char kSavePageAsMHTML[] = "save-page-as-mhtml"; | 758 const char kSavePageAsMHTML[] = "save-page-as-mhtml"; |
| 759 | 759 |
| 760 // If true the app list will be shown. | 760 // If true the app list will be shown. |
| 761 const char kShowAppList[] = "show-app-list"; | 761 const char kShowAppList[] = "show-app-list"; |
| 762 | 762 |
| 763 // If true the Certificate link will be shown in Page Info for HTTPS pages. |
| 764 const char kShowCertLink[] = "show-cert-link"; |
| 765 |
| 763 // Does not show an infobar when an extension attaches to a page using | 766 // Does not show an infobar when an extension attaches to a page using |
| 764 // chrome.debugger page. Required to attach to extension background pages. | 767 // chrome.debugger page. Required to attach to extension background pages. |
| 765 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; | 768 const char kSilentDebuggerExtensionAPI[] = "silent-debugger-extension-api"; |
| 766 | 769 |
| 767 // Causes Chrome to launch without opening any windows by default. Useful if | 770 // Causes Chrome to launch without opening any windows by default. Useful if |
| 768 // one wishes to use Chrome as an ash server. | 771 // one wishes to use Chrome as an ash server. |
| 769 const char kSilentLaunch[] = "silent-launch"; | 772 const char kSilentLaunch[] = "silent-launch"; |
| 770 | 773 |
| 771 // Simulates a critical update being available. | 774 // Simulates a critical update being available. |
| 772 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; | 775 const char kSimulateCriticalUpdate[] = "simulate-critical-update"; |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1183 | 1186 |
| 1184 // ----------------------------------------------------------------------------- | 1187 // ----------------------------------------------------------------------------- |
| 1185 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. | 1188 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. |
| 1186 // | 1189 // |
| 1187 // You were going to just dump your switches here, weren't you? Instead, please | 1190 // You were going to just dump your switches here, weren't you? Instead, please |
| 1188 // put them in alphabetical order above, or in order inside the appropriate | 1191 // put them in alphabetical order above, or in order inside the appropriate |
| 1189 // ifdef at the bottom. The order should match the header. | 1192 // ifdef at the bottom. The order should match the header. |
| 1190 // ----------------------------------------------------------------------------- | 1193 // ----------------------------------------------------------------------------- |
| 1191 | 1194 |
| 1192 } // namespace switches | 1195 } // namespace switches |
| OLD | NEW |