summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/browser/cocoa/browser_window_cocoa.h6
-rw-r--r--chrome/browser/cocoa/browser_window_cocoa.mm3
2 files changed, 1 insertions, 8 deletions
diff --git a/chrome/browser/cocoa/browser_window_cocoa.h b/chrome/browser/cocoa/browser_window_cocoa.h
index 7891575..a20a12a 100644
--- a/chrome/browser/cocoa/browser_window_cocoa.h
+++ b/chrome/browser/cocoa/browser_window_cocoa.h
@@ -98,12 +98,6 @@ class BrowserWindowCocoa : public BrowserWindow,
NSWindow* window_; // weak, owned by controller
Browser* browser_; // weak, owned by controller
BrowserWindowController* controller_; // weak, owns us
-
- // Data for shelves and stuff ------------------------------------------------
- // FIXME(thakis): This should probably in the controller on OS X.
-
- // The download shelf view (view at the bottom of the page).
- scoped_ptr<DownloadShelf> download_shelf_;
};
#endif // CHROME_BROWSER_COCOA_BROWSER_WINDOW_COCOA_H_
diff --git a/chrome/browser/cocoa/browser_window_cocoa.mm b/chrome/browser/cocoa/browser_window_cocoa.mm
index 61a616b..9494e20 100644
--- a/chrome/browser/cocoa/browser_window_cocoa.mm
+++ b/chrome/browser/cocoa/browser_window_cocoa.mm
@@ -24,8 +24,7 @@ BrowserWindowCocoa::BrowserWindowCocoa(Browser* browser,
NSWindow* window)
: window_(window),
browser_(browser),
- controller_(controller),
- download_shelf_() {
+ controller_(controller) {
// This pref applies to all windows, so all must watch for it.
registrar_.Add(this, NotificationType::BOOKMARK_BAR_VISIBILITY_PREF_CHANGED,
NotificationService::AllSources());