blob: dc76d9a0e6318d8769e4b445a5aa0f409851ba76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright 2018 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 "components/ui_devtools/switches.h"
namespace ui_devtools {
namespace switches {
// Enables DevTools server for UI (mus, ash, etc). Value should be the port the
// server is started on. Default port is 9223.
const char kEnableUiDevTools[] = "enable-ui-devtools";
} // namespace switches
} // namespace ui_devtools
|