scoped_policy.h 684 Bytes
Newer Older
gejun's avatar
gejun committed
1 2 3 4
// Copyright (c) 2012 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.

5 6
#ifndef BUTIL_MEMORY_SCOPED_POLICY_H_
#define BUTIL_MEMORY_SCOPED_POLICY_H_
gejun's avatar
gejun committed
7

8
namespace butil {
gejun's avatar
gejun committed
9 10 11 12 13 14 15 16 17 18 19 20 21 22
namespace scoped_policy {

// Defines the ownership policy for a scoped object.
enum OwnershipPolicy {
  // The scoped object takes ownership of an object by taking over an existing
  // ownership claim.
  ASSUME,

  // The scoped object will retain the the object and any initial ownership is
  // not changed.
  RETAIN
};

}  // namespace scoped_policy
23
}  // namespace butil
gejun's avatar
gejun committed
24

25
#endif  // BUTIL_MEMORY_SCOPED_POLICY_H_