Chromium Code Reviews| Index: base/mac/scoped_nsobject.h |
| diff --git a/base/mac/scoped_nsobject.h b/base/mac/scoped_nsobject.h |
| index 04c5877db718e5926584fda5c07eeede5f7078c2..71c79e00d76f794898051ed98db1fa6824268fe9 100644 |
| --- a/base/mac/scoped_nsobject.h |
| +++ b/base/mac/scoped_nsobject.h |
| @@ -19,9 +19,11 @@ |
| namespace base { |
| -// scoped_nsobject<> is patterned after scoped_ptr<>, but maintains ownership |
| +// scoped_nsobject<> is patterned after std::unique_ptr<>, but maintains |
| +// ownership |
|
Nico
2016/04/04 17:14:56
likewise
dcheng
2016/04/04 17:43:38
Done.
|
| // of an NSObject subclass object. Style deviations here are solely for |
| -// compatibility with scoped_ptr<>'s interface, with which everyone is already |
| +// compatibility with std::unique_ptr<>'s interface, with which everyone is |
| +// already |
| // familiar. |
| // |
| // scoped_nsobject<> takes ownership of an object (in the constructor or in |