| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 5 #ifndef CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
| 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 6 #define CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/scoped_nsobject.h" | 9 #include "base/memory/scoped_nsobject.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 virtual bool InPresentationMode() OVERRIDE; | 122 virtual bool InPresentationMode() OVERRIDE; |
| 123 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 123 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
| 124 virtual void HideInstant() OVERRIDE; | 124 virtual void HideInstant() OVERRIDE; |
| 125 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 125 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
| 126 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 126 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
| 127 const gfx::Rect& bounds) OVERRIDE; | 127 const gfx::Rect& bounds) OVERRIDE; |
| 128 virtual FindBar* CreateFindBar() OVERRIDE; | 128 virtual FindBar* CreateFindBar() OVERRIDE; |
| 129 virtual void ShowAvatarBubble(TabContents* tab_contents, | 129 virtual void ShowAvatarBubble(TabContents* tab_contents, |
| 130 const gfx::Rect& rect) OVERRIDE; | 130 const gfx::Rect& rect) OVERRIDE; |
| 131 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 131 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
| 132 virtual void UpdatePreferredSize(TabContents* tab_contents, |
| 133 const gfx::Size& pref_size) OVERRIDE; |
| 132 | 134 |
| 133 // Overridden from NotificationObserver | 135 // Overridden from NotificationObserver |
| 134 virtual void Observe(int type, | 136 virtual void Observe(int type, |
| 135 const content::NotificationSource& source, | 137 const content::NotificationSource& source, |
| 136 const content::NotificationDetails& details) OVERRIDE; | 138 const content::NotificationDetails& details) OVERRIDE; |
| 137 | 139 |
| 138 // Adds the given FindBar cocoa controller to this browser window. | 140 // Adds the given FindBar cocoa controller to this browser window. |
| 139 void AddFindBar(FindBarCocoaController* find_bar_cocoa_controller); | 141 void AddFindBar(FindBarCocoaController* find_bar_cocoa_controller); |
| 140 | 142 |
| 141 // Returns the cocoa-world BrowserWindowController | 143 // Returns the cocoa-world BrowserWindowController |
| 142 BrowserWindowController* cocoa_controller() { return controller_; } | 144 BrowserWindowController* cocoa_controller() { return controller_; } |
| 143 | 145 |
| 144 protected: | 146 protected: |
| 145 virtual void DestroyBrowser() OVERRIDE; | 147 virtual void DestroyBrowser() OVERRIDE; |
| 146 | 148 |
| 147 private: | 149 private: |
| 148 NSWindow* window() const; // Accessor for the (current) |NSWindow|. | 150 NSWindow* window() const; // Accessor for the (current) |NSWindow|. |
| 149 void UpdateSidebarForContents(TabContents* tab_contents); | 151 void UpdateSidebarForContents(TabContents* tab_contents); |
| 150 | 152 |
| 151 content::NotificationRegistrar registrar_; | 153 content::NotificationRegistrar registrar_; |
| 152 PrefChangeRegistrar pref_change_registrar_; | 154 PrefChangeRegistrar pref_change_registrar_; |
| 153 Browser* browser_; // weak, owned by controller | 155 Browser* browser_; // weak, owned by controller |
| 154 BrowserWindowController* controller_; // weak, owns us | 156 BrowserWindowController* controller_; // weak, owns us |
| 155 base::WeakPtrFactory<Browser> confirm_close_factory_; | 157 base::WeakPtrFactory<Browser> confirm_close_factory_; |
| 156 scoped_nsobject<NSString> pending_window_title_; | 158 scoped_nsobject<NSString> pending_window_title_; |
| 157 ui::WindowShowState initial_show_state_; | 159 ui::WindowShowState initial_show_state_; |
| 158 }; | 160 }; |
| 159 | 161 |
| 160 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ | 162 #endif // CHROME_BROWSER_UI_COCOA_BROWSER_WINDOW_COCOA_H_ |
| OLD | NEW |