| Index: base/file_version_info_mac.h
|
| diff --git a/base/file_version_info_mac.h b/base/file_version_info_mac.h
|
| index d66c4e6343c7b316eb6263c628d87712c2353b7d..ff6e455d0a14e32b2edc908be86bf4bf3b023be3 100644
|
| --- a/base/file_version_info_mac.h
|
| +++ b/base/file_version_info_mac.h
|
| @@ -8,9 +8,8 @@
|
|
|
| #include <string>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/file_version_info.h"
|
| -#include "base/scoped_ptr.h"
|
| +#include "base/scoped_nsobject.h"
|
|
|
| #ifdef __OBJC__
|
| @class NSBundle;
|
| @@ -25,7 +24,6 @@ class NSBundle;
|
| class FileVersionInfoMac : public FileVersionInfo {
|
| public:
|
| explicit FileVersionInfoMac(NSBundle *bundle);
|
| - ~FileVersionInfoMac();
|
|
|
| // Accessors to the different version properties.
|
| // Returns an empty string if the property is not found.
|
| @@ -54,7 +52,7 @@ class FileVersionInfoMac : public FileVersionInfo {
|
| // does not exist).
|
| std::wstring GetStringValue(const wchar_t* name);
|
|
|
| - NSBundle *bundle_;
|
| + scoped_nsobject<NSBundle> bundle_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(FileVersionInfoMac);
|
| };
|
|
|