| 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 | 10 |
| (...skipping 676 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 687 | 687 |
| 688 #if !defined(GOOGLE_CHROME_BUILD) | 688 #if !defined(GOOGLE_CHROME_BUILD) |
| 689 // Enables a live-reload for local NTP resources. This only works when Chrome | 689 // Enables a live-reload for local NTP resources. This only works when Chrome |
| 690 // is running from a Chrome source directory. | 690 // is running from a Chrome source directory. |
| 691 const char kLocalNtpReload[] = "local-ntp-reload"; | 691 const char kLocalNtpReload[] = "local-ntp-reload"; |
| 692 #endif | 692 #endif |
| 693 | 693 |
| 694 // Makes Chrome default browser | 694 // Makes Chrome default browser |
| 695 const char kMakeDefaultBrowser[] = "make-default-browser"; | 695 const char kMakeDefaultBrowser[] = "make-default-browser"; |
| 696 | 696 |
| 697 // Use to opt-in to marking HTTP as non-secure. | |
| 698 const char kMarkNonSecureAs[] = "mark-non-secure-as"; | |
| 699 const char kMarkNonSecureAsNeutral[] = "neutral"; | |
| 700 const char kMarkNonSecureAsNonSecure[] = "non-secure"; | |
| 701 | |
| 702 // Forces the maximum disk space to be used by the media cache, in bytes. | 697 // Forces the maximum disk space to be used by the media cache, in bytes. |
| 703 const char kMediaCacheSize[] = "media-cache-size"; | 698 const char kMediaCacheSize[] = "media-cache-size"; |
| 704 | 699 |
| 705 // Enables Media Router. | 700 // Enables Media Router. |
| 706 const char kMediaRouter[] = "media-router"; | 701 const char kMediaRouter[] = "media-router"; |
| 707 | 702 |
| 708 // Enables histograming of tasks served by MessageLoop. See | 703 // Enables histograming of tasks served by MessageLoop. See |
| 709 // about:histograms/Loop for results, which show frequency of messages on each | 704 // about:histograms/Loop for results, which show frequency of messages on each |
| 710 // thread, including APC count, object signalling count, etc. | 705 // thread, including APC count, object signalling count, etc. |
| 711 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; | 706 const char kMessageLoopHistogrammer[] = "message-loop-histogrammer"; |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1394 | 1389 |
| 1395 // ----------------------------------------------------------------------------- | 1390 // ----------------------------------------------------------------------------- |
| 1396 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1397 // | 1392 // |
| 1398 // You were going to just dump your switches here, weren't you? Instead, please | 1393 // You were going to just dump your switches here, weren't you? Instead, please |
| 1399 // put them in alphabetical order above, or in order inside the appropriate | 1394 // put them in alphabetical order above, or in order inside the appropriate |
| 1400 // ifdef at the bottom. The order should match the header. | 1395 // ifdef at the bottom. The order should match the header. |
| 1401 // ----------------------------------------------------------------------------- | 1396 // ----------------------------------------------------------------------------- |
| 1402 | 1397 |
| 1403 } // namespace switches | 1398 } // namespace switches |
| OLD | NEW |