diff options
Diffstat (limited to 'chrome/browser/cocoa/bookmark_bar_controller.mm')
-rw-r--r-- | chrome/browser/cocoa/bookmark_bar_controller.mm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/cocoa/bookmark_bar_controller.mm b/chrome/browser/cocoa/bookmark_bar_controller.mm index 48eeba8..f7ffbda 100644 --- a/chrome/browser/cocoa/bookmark_bar_controller.mm +++ b/chrome/browser/cocoa/bookmark_bar_controller.mm @@ -34,6 +34,11 @@ return self; } +- (void)dealloc { + [bookmarkView_ release]; + [super dealloc]; +} + // Initializes the bookmark bar at the top edge of |contentArea_| and the // view's visibility to match the pref. This doesn't move the content view at // all, you need to call |-showBookmarkBar:| to do that. |