blob: 0d3963db38b18be0fc85892dc468a01dd4d9ac20 [file] [log] [blame]
// 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.
#ifndef WEBRUNNER_SERVICE_COMMON_H_
#define WEBRUNNER_SERVICE_COMMON_H_
#include <zircon/processargs.h>
#include "webrunner/common/webrunner_export.h"
namespace webrunner {
// Switch passed to content process when running in incognito mode, i.e. when
// there is no kWebContextDataPath.
WEBRUNNER_EXPORT extern const char kIncognitoSwitch[];
// This file contains constants and functions shared between Context and
// ContextProvider processes.
// Handle ID for the Context interface request passed from ContextProvider to
// Context process.
constexpr uint32_t kContextRequestHandleId = PA_HND(PA_USER0, 0);
} // namespace webrunner
#endif // WEBRUNNER_SERVICE_COMMON_H_