blob: df3d348a6338d6b4c09f10a2cf969b7191309541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2020 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.
#ifndef COMPONENTS_ENTERPRISE_COMMON_STRINGS_H_
#define COMPONENTS_ENTERPRISE_COMMON_STRINGS_H_
namespace enterprise {
// URL parameters used when enterprise connectors call on service provider
// endpoints.
extern const char kUrlParamConnector[];
extern const char kUrlParamDeviceToken[];
extern const char kUrlParamTag[];
} // namespace enterprise
#endif // COMPONENTS_ENTERPRISE_COMMON_STRINGS_H_
|