| Index: base/containers/scoped_ptr_hash_map.h
|
| diff --git a/cc/base/scoped_ptr_hash_map.h b/base/containers/scoped_ptr_hash_map.h
|
| similarity index 95%
|
| rename from cc/base/scoped_ptr_hash_map.h
|
| rename to base/containers/scoped_ptr_hash_map.h
|
| index 47135822d2da78eb55e545e194d225631307d2b0..7fbbbe2a708d9d13b40f0623c10aed1161596c04 100644
|
| --- a/cc/base/scoped_ptr_hash_map.h
|
| +++ b/base/containers/scoped_ptr_hash_map.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CC_BASE_SCOPED_PTR_HASH_MAP_H_
|
| -#define CC_BASE_SCOPED_PTR_HASH_MAP_H_
|
| +#ifndef BASE_CONTAINERS_SCOPED_PTR_HASH_MAP_H_
|
| +#define BASE_CONTAINERS_SCOPED_PTR_HASH_MAP_H_
|
|
|
| #include <algorithm>
|
| #include <utility>
|
| @@ -14,7 +14,7 @@
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/stl_util.h"
|
|
|
| -namespace cc {
|
| +namespace base {
|
|
|
| // This type acts like a hash_map<K, scoped_ptr<V> >, based on top of
|
| // base::hash_map. The ScopedPtrHashMap has ownership of all values in the data
|
| @@ -152,6 +152,6 @@ class ScopedPtrHashMap {
|
| DISALLOW_COPY_AND_ASSIGN(ScopedPtrHashMap);
|
| };
|
|
|
| -} // namespace cc
|
| +} // namespace base
|
|
|
| -#endif // CC_BASE_SCOPED_PTR_HASH_MAP_H_
|
| +#endif // BASE_CONTAINERS_SCOPED_PTR_HASH_MAP_H_
|
|
|