OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 8 |
9 namespace switches { | 9 namespace switches { |
10 | 10 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
257 | 257 |
258 // Disable the use of the HistoryQuickProvider for autocomplete results. | 258 // Disable the use of the HistoryQuickProvider for autocomplete results. |
259 const char kDisableHistoryQuickProvider[] = "disable-history-quick-provider"; | 259 const char kDisableHistoryQuickProvider[] = "disable-history-quick-provider"; |
260 | 260 |
261 // Disable the use of the HistoryURLProvider for autocomplete results. | 261 // Disable the use of the HistoryURLProvider for autocomplete results. |
262 const char kDisableHistoryURLProvider[] = "disable-history-url-provider"; | 262 const char kDisableHistoryURLProvider[] = "disable-history-url-provider"; |
263 | 263 |
264 // Disable the Indexed Database API. | 264 // Disable the Indexed Database API. |
265 const char kDisableIndexedDatabase[] = "disable-indexed-database"; | 265 const char kDisableIndexedDatabase[] = "disable-indexed-database"; |
266 | 266 |
267 // Use LevelDB as back-end for Indexed Database API. | |
268 const char kLevelDBIndexedDatabase[] = "level-db"; | |
jorlow
2011/03/08 18:45:55
Let's make this a bit more descriptive.
--indexed
hans
2011/03/09 12:22:09
Done.
| |
269 | |
267 // Disables HTML5 Forms interactive validation. | 270 // Disables HTML5 Forms interactive validation. |
268 const char kDisableInteractiveFormValidation[] = | 271 const char kDisableInteractiveFormValidation[] = |
269 "disable-interactive-form-validation"; | 272 "disable-interactive-form-validation"; |
270 | 273 |
271 // Disable the internal Flash Player. | 274 // Disable the internal Flash Player. |
272 const char kDisableInternalFlash[] = "disable-internal-flash"; | 275 const char kDisableInternalFlash[] = "disable-internal-flash"; |
273 | 276 |
274 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging | 277 // Don't resolve hostnames to IPv6 addresses. This can be used when debugging |
275 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to | 278 // issues relating to IPv6, but shouldn't otherwise be needed. Be sure to |
276 // file bugs if something isn't working properly in the presence of IPv6. | 279 // file bugs if something isn't working properly in the presence of IPv6. |
(...skipping 968 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1245 | 1248 |
1246 // ----------------------------------------------------------------------------- | 1249 // ----------------------------------------------------------------------------- |
1247 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1250 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1248 // | 1251 // |
1249 // You were going to just dump your switches here, weren't you? Instead, | 1252 // You were going to just dump your switches here, weren't you? Instead, |
1250 // please put them in alphabetical order above, or in order inside the | 1253 // please put them in alphabetical order above, or in order inside the |
1251 // appropriate ifdef at the bottom. The order should match the header. | 1254 // appropriate ifdef at the bottom. The order should match the header. |
1252 // ----------------------------------------------------------------------------- | 1255 // ----------------------------------------------------------------------------- |
1253 | 1256 |
1254 } // namespace switches | 1257 } // namespace switches |
OLD | NEW |