summaryrefslogtreecommitdiffstats
path: root/net/base/privacy_mode.h
blob: 082ef26fb2ff36c6ba1ecd77c9fbaabb2f9af1c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) 2013 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 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 or spdy).
enum PrivacyMode {
  kPrivacyModeDisabled = 0,
  kPrivacyModeEnabled = 1,
};

};  // namespace net

#endif  // NET_BASE_PRIVACY_MODE_H_