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