chromium/net/base/privacy_mode.h

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef NET_BASE_PRIVACY_MODE_H_
#define NET_BASE_PRIVACY_MODE_H_

namespace net {

// Privacy Mode is enabled if cookies to particular site are blocked, so
// Channel ID is disabled on that connection (https, spdy or quic).
enum PrivacyMode {};

const char* PrivacyModeToDebugString(PrivacyMode privacy_mode);

}  // namespace net

#endif  // NET_BASE_PRIVACY_MODE_H_