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 "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 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 // and study painting behavior. | 439 // and study painting behavior. |
440 const char kShowPaintRects[] = "show-paint-rects"; | 440 const char kShowPaintRects[] = "show-paint-rects"; |
441 // | 441 // |
442 // TODO(scherkus): remove --simple-data-source when our media resource loading | 442 // TODO(scherkus): remove --simple-data-source when our media resource loading |
443 // is cleaned up and playback testing completed. | 443 // is cleaned up and playback testing completed. |
444 const char kSimpleDataSource[] = "simple-data-source"; | 444 const char kSimpleDataSource[] = "simple-data-source"; |
445 | 445 |
446 // Runs the renderer and plugins in the same process as the browser | 446 // Runs the renderer and plugins in the same process as the browser |
447 const char kSingleProcess[] = "single-process"; | 447 const char kSingleProcess[] = "single-process"; |
448 | 448 |
449 // Use SQLite as back-end for Indexed Database API. | |
450 // Used for debugging differences between the LevelDB and SQLite back-end. | |
451 const char kSQLiteIndexedDatabase[] = "indexeddb-use-sqlite"; | |
452 | |
453 // Runs the security test for the renderer sandbox. | 449 // Runs the security test for the renderer sandbox. |
454 const char kTestSandbox[] = "test-sandbox"; | 450 const char kTestSandbox[] = "test-sandbox"; |
455 | 451 |
456 // A string used to override the default user agent with a custom one. | 452 // A string used to override the default user agent with a custom one. |
457 const char kUserAgent[] = "user-agent"; | 453 const char kUserAgent[] = "user-agent"; |
458 | 454 |
459 // On POSIX only: the contents of this flag are prepended to the utility | 455 // On POSIX only: the contents of this flag are prepended to the utility |
460 // process command line. Useful values might be "valgrind" or "xterm -e gdb | 456 // process command line. Useful values might be "valgrind" or "xterm -e gdb |
461 // --args". | 457 // --args". |
462 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; | 458 const char kUtilityCmdPrefix[] = "utility-cmd-prefix"; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 // instead of NSS for SSL. | 499 // instead of NSS for SSL. |
504 const char kUseSystemSSL[] = "use-system-ssl"; | 500 const char kUseSystemSSL[] = "use-system-ssl"; |
505 #endif | 501 #endif |
506 | 502 |
507 #if !defined(OFFICIAL_BUILD) | 503 #if !defined(OFFICIAL_BUILD) |
508 // Causes the renderer process to throw an assertion on launch. | 504 // Causes the renderer process to throw an assertion on launch. |
509 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 505 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
510 #endif | 506 #endif |
511 | 507 |
512 } // namespace switches | 508 } // namespace switches |
OLD | NEW |