| Index: chrome/common/chrome_switches.cc
|
| diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
|
| index 6d55c59db8efed87e76a32083bb66a12612ee201..ace79a09830a8e1281a68d4835e085da758072c8 100644
|
| --- a/chrome/common/chrome_switches.cc
|
| +++ b/chrome/common/chrome_switches.cc
|
| @@ -217,6 +217,11 @@ const char kDisableRemoteFonts[] = "disable-remote-fonts";
|
| // Turns off the accessibility in the renderer.
|
| const char kDisableRendererAccessibility[] = "disable-renderer-accessibility";
|
|
|
| +// Prevents the URLs of BackgroundContents from being remembered and re-launched
|
| +// when the browser restarts.
|
| +const char kDisableRestoreBackgroundContents[] =
|
| + "disable-restore-background-contents";
|
| +
|
| // Disable session storage.
|
| const char kDisableSessionStorage[] = "disable-session-storage";
|
|
|
| @@ -851,10 +856,6 @@ const char kRendererProcess[] = "renderer";
|
| // Causes the renderer process to display a dialog on launch.
|
| const char kRendererStartupDialog[] = "renderer-startup-dialog";
|
|
|
| -// Causes the URLs of BackgroundContents to be remembered and re-launched when
|
| -// the browser restarts.
|
| -const char kRestoreBackgroundContents[] = "restore-background-contents";
|
| -
|
| // Indicates the last session should be restored on startup. This overrides
|
| // the preferences value and is primarily intended for testing. The value of
|
| // this switch is the number of tabs to wait until loaded before
|
|
|