blob: fa058d07acf37571896c8b8193bcfbdf0891a64d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "weblayer/shell/common/shell_switches.h"
namespace weblayer {
namespace switches {
// Stops new Shell objects from navigating to a default url.
const char kNoInitialNavigation[] = "no-initial-navigation";
// Starts the shell with the profile in incognito mode.
const char kStartInIncognito[] = "start-in-incognito";
} // namespace switches
} // namespace weblayer
|