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 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
274 const char kDisableMinimizeOnSecondLauncherItemClick[] = | 274 const char kDisableMinimizeOnSecondLauncherItemClick[] = |
275 "disable-minimize-on-second-launcher-item-click"; | 275 "disable-minimize-on-second-launcher-item-click"; |
276 | 276 |
277 // Disables the new bookmark app system. | 277 // Disables the new bookmark app system. |
278 const char kDisableNewBookmarkApps[] = "disable-new-bookmark-apps"; | 278 const char kDisableNewBookmarkApps[] = "disable-new-bookmark-apps"; |
279 | 279 |
280 // Disables the new offline error page generated by NetErrorHelper for ChromeOS | 280 // Disables the new offline error page generated by NetErrorHelper for ChromeOS |
281 // and instead uses the old error page generated by OfflineResourceThrottle. | 281 // and instead uses the old error page generated by OfflineResourceThrottle. |
282 const char kDisableNewOfflineErrorPage[] = "disable-new-offline-error-page"; | 282 const char kDisableNewOfflineErrorPage[] = "disable-new-offline-error-page"; |
283 | 283 |
284 // Disables the menu on the NTP for accessing sessions from other devices. | |
285 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; | |
286 | |
287 // Disable auto-reload of error pages if offline. | 284 // Disable auto-reload of error pages if offline. |
288 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload"; | 285 const char kDisableOfflineAutoReload[] = "disable-offline-auto-reload"; |
289 | 286 |
290 // Disable only auto-reloading error pages when the tab is visible. | 287 // Disable only auto-reloading error pages when the tab is visible. |
291 const char kDisableOfflineAutoReloadVisibleOnly[] = | 288 const char kDisableOfflineAutoReloadVisibleOnly[] = |
292 "disable-offline-auto-reload-visible-only"; | 289 "disable-offline-auto-reload-visible-only"; |
293 | 290 |
294 // Disable the setting to prompt the user for their OS account password before | 291 // Disable the setting to prompt the user for their OS account password before |
295 // revealing plaintext passwords in the password manager. | 292 // revealing plaintext passwords in the password manager. |
296 const char kDisablePasswordManagerReauthentication[] = | 293 const char kDisablePasswordManagerReauthentication[] = |
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1369 | 1366 |
1370 // ----------------------------------------------------------------------------- | 1367 // ----------------------------------------------------------------------------- |
1371 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1368 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1372 // | 1369 // |
1373 // You were going to just dump your switches here, weren't you? Instead, please | 1370 // You were going to just dump your switches here, weren't you? Instead, please |
1374 // put them in alphabetical order above, or in order inside the appropriate | 1371 // put them in alphabetical order above, or in order inside the appropriate |
1375 // ifdef at the bottom. The order should match the header. | 1372 // ifdef at the bottom. The order should match the header. |
1376 // ----------------------------------------------------------------------------- | 1373 // ----------------------------------------------------------------------------- |
1377 | 1374 |
1378 } // namespace switches | 1375 } // namespace switches |
OLD | NEW |