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 namespace switches { | 7 namespace switches { |
8 | 8 |
| 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| 10 // have an effect. 0 disables MSAA. |
| 11 const char kAcceleratedCanvas2dMSAASampleCount[] = "canvas-msaa-sample-count"; |
| 12 |
9 // By default, file:// URIs cannot read other file:// URIs. This is an | 13 // By default, file:// URIs cannot read other file:// URIs. This is an |
10 // override for developers who need the old behavior for testing. | 14 // override for developers who need the old behavior for testing. |
11 const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; | 15 const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; |
12 | 16 |
13 // Allows filters (SkImageFilter objects) to be sent between processes over IPC | 17 // Allows filters (SkImageFilter objects) to be sent between processes over IPC |
14 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc"; | 18 const char kAllowFiltersOverIPC[] = "allow-filters-over-ipc"; |
15 | 19 |
16 // Enables the sandboxed processes to run without a job object assigned to them. | 20 // Enables the sandboxed processes to run without a job object assigned to them. |
17 // This flag is required to allow Chrome to run in RemoteApps or Citrix. This | 21 // This flag is required to allow Chrome to run in RemoteApps or Citrix. This |
18 // flag can reduce the security of the sandboxed processes and allow them to do | 22 // flag can reduce the security of the sandboxed processes and allow them to do |
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 #endif | 985 #endif |
982 | 986 |
983 #if defined(USE_AURA) | 987 #if defined(USE_AURA) |
984 // Forces usage of the test compositor. Needed to run ui tests on bots. | 988 // Forces usage of the test compositor. Needed to run ui tests on bots. |
985 extern const char kTestCompositor[] = "test-compositor"; | 989 extern const char kTestCompositor[] = "test-compositor"; |
986 #endif | 990 #endif |
987 | 991 |
988 // Don't dump stuff here, follow the same order as the header. | 992 // Don't dump stuff here, follow the same order as the header. |
989 | 993 |
990 } // namespace switches | 994 } // namespace switches |
OLD | NEW |