Chromium Code Reviews| Index: resource.cc |
| diff --git a/resource.cc b/resource.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..d7ca4b486f64215a20311caedad9a9199ee7b098 |
| --- /dev/null |
| +++ b/resource.cc |
| @@ -0,0 +1,15 @@ |
| +// Copyright (c) 2011 The Chromium OS Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include <shill/resource.h> |
| + |
| +namespace shill { |
| +void Resource::Release() { |
| + freeing_ = 1; |
| +} |
| + |
| +bool Resource::IsFreeing() { |
| + return freeing_; |
| +} |
| +} // namespace shill |