| Index: chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h
|
| diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h
|
| index e8107eaf77d1fdc8fe1a2f316ee78201fc320f43..1a60827d37dfd21aabffac123f0a10dc49317eb4 100644
|
| --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h
|
| +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_editor_base_controller.h
|
| @@ -7,7 +7,7 @@
|
|
|
| #import <Cocoa/Cocoa.h>
|
|
|
| -#include "base/memory/scoped_nsobject.h"
|
| +#include "base/mac/scoped_nsobject.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "chrome/browser/bookmarks/bookmark_editor.h"
|
| #include "chrome/browser/bookmarks/bookmark_expanded_state_tracker.h"
|
| @@ -41,10 +41,10 @@ class BookmarkModel;
|
| BOOL creatingNewFolders_; // True while in createNewFolders.
|
| // An array of BookmarkFolderInfo where each item describes a folder in the
|
| // BookmarkNode structure.
|
| - scoped_nsobject<NSArray> folderTreeArray_;
|
| + base::scoped_nsobject<NSArray> folderTreeArray_;
|
| // Bound to the table view giving a path to the current selections, of which
|
| // there should only ever be one.
|
| - scoped_nsobject<NSArray> tableSelectionPaths_;
|
| + base::scoped_nsobject<NSArray> tableSelectionPaths_;
|
| // C++ bridge object that observes the BookmarkModel for me.
|
| scoped_ptr<BookmarkEditorBaseControllerBridge> observer_;
|
| }
|
|
|