| 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 "content/public/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 821 // than their parent pages. | 821 // than their parent pages. |
| 822 const char kSitePerProcess[] = "site-per-process"; | 822 const char kSitePerProcess[] = "site-per-process"; |
| 823 | 823 |
| 824 // Skip gpu info collection, blacklist loading, and blacklist auto-update | 824 // Skip gpu info collection, blacklist loading, and blacklist auto-update |
| 825 // scheduling at browser startup time. | 825 // scheduling at browser startup time. |
| 826 // Therefore, all GPU features are available, and about:gpu page shows empty | 826 // Therefore, all GPU features are available, and about:gpu page shows empty |
| 827 // content. The switch is intended only for layout tests. | 827 // content. The switch is intended only for layout tests. |
| 828 // TODO(gab): Get rid of this switch entirely. | 828 // TODO(gab): Get rid of this switch entirely. |
| 829 const char kSkipGpuDataLoading[] = "skip-gpu-data-loading"; | 829 const char kSkipGpuDataLoading[] = "skip-gpu-data-loading"; |
| 830 | 830 |
| 831 // Specifies the request key for the continuous speech recognition webservice. | |
| 832 const char kSpeechRecognitionWebserviceKey[] = "speech-service-key"; | |
| 833 | |
| 834 // Specifies if the browser should start in fullscreen mode, like if the user | 831 // Specifies if the browser should start in fullscreen mode, like if the user |
| 835 // had pressed F11 right after startup. | 832 // had pressed F11 right after startup. |
| 836 const char kStartFullscreen[] = "start-fullscreen"; | 833 const char kStartFullscreen[] = "start-fullscreen"; |
| 837 | 834 |
| 838 // Specifies if the |StatsCollectionController| needs to be bound in the | 835 // Specifies if the |StatsCollectionController| needs to be bound in the |
| 839 // renderer. This binding happens on per-frame basis and hence can potentially | 836 // renderer. This binding happens on per-frame basis and hence can potentially |
| 840 // be a performance bottleneck. One should only enable it when running a test | 837 // be a performance bottleneck. One should only enable it when running a test |
| 841 // that needs to access the provided statistics. | 838 // that needs to access the provided statistics. |
| 842 const char kStatsCollectionController[] = | 839 const char kStatsCollectionController[] = |
| 843 "enable-stats-collection-bindings"; | 840 "enable-stats-collection-bindings"; |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1043 #endif | 1040 #endif |
| 1044 | 1041 |
| 1045 #if defined(OS_POSIX) | 1042 #if defined(OS_POSIX) |
| 1046 // Causes the child processes to cleanly exit via calling exit(). | 1043 // Causes the child processes to cleanly exit via calling exit(). |
| 1047 const char kChildCleanExit[] = "child-clean-exit"; | 1044 const char kChildCleanExit[] = "child-clean-exit"; |
| 1048 #endif | 1045 #endif |
| 1049 | 1046 |
| 1050 // Don't dump stuff here, follow the same order as the header. | 1047 // Don't dump stuff here, follow the same order as the header. |
| 1051 | 1048 |
| 1052 } // namespace switches | 1049 } // namespace switches |
| OLD | NEW |