OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PANELS_PANEL_H_ | 5 #ifndef CHROME_BROWSER_UI_PANELS_PANEL_H_ |
6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ | 6 #define CHROME_BROWSER_UI_PANELS_PANEL_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "chrome/browser/ui/browser_window.h" | 9 #include "chrome/browser/ui/browser_window.h" |
10 | 10 |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 FullscreenExitBubbleType bubble_type) OVERRIDE; | 186 FullscreenExitBubbleType bubble_type) OVERRIDE; |
187 virtual void ExitPresentationMode() OVERRIDE; | 187 virtual void ExitPresentationMode() OVERRIDE; |
188 virtual bool InPresentationMode() OVERRIDE; | 188 virtual bool InPresentationMode() OVERRIDE; |
189 #endif | 189 #endif |
190 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 190 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
191 virtual void HideInstant() OVERRIDE; | 191 virtual void HideInstant() OVERRIDE; |
192 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 192 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
193 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 193 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
194 const gfx::Rect& bounds) OVERRIDE; | 194 const gfx::Rect& bounds) OVERRIDE; |
195 virtual FindBar* CreateFindBar() OVERRIDE; | 195 virtual FindBar* CreateFindBar() OVERRIDE; |
196 #if defined(OS_CHROMEOS) | |
197 virtual void ShowKeyboardOverlay(gfx::NativeWindow owning_window) OVERRIDE; | |
198 #endif | |
199 virtual void ResizeDueToAutoResize(content::WebContents* web_contents, | 196 virtual void ResizeDueToAutoResize(content::WebContents* web_contents, |
200 const gfx::Size& new_size) OVERRIDE; | 197 const gfx::Size& new_size) OVERRIDE; |
201 virtual void ShowAvatarBubble(content::WebContents* web_contents, | 198 virtual void ShowAvatarBubble(content::WebContents* web_contents, |
202 const gfx::Rect& rect) OVERRIDE; | 199 const gfx::Rect& rect) OVERRIDE; |
203 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; | 200 virtual void ShowAvatarBubbleFromAvatarButton() OVERRIDE; |
204 | 201 |
205 // TabStripModelObserver overrides. | 202 // TabStripModelObserver overrides. |
206 virtual void TabInsertedAt(TabContentsWrapper* contents, | 203 virtual void TabInsertedAt(TabContentsWrapper* contents, |
207 int index, | 204 int index, |
208 bool foreground) OVERRIDE; | 205 bool foreground) OVERRIDE; |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
390 AttentionMode attention_mode_; | 387 AttentionMode attention_mode_; |
391 | 388 |
392 ExpansionState expansion_state_; | 389 ExpansionState expansion_state_; |
393 | 390 |
394 content::NotificationRegistrar registrar_; | 391 content::NotificationRegistrar registrar_; |
395 | 392 |
396 DISALLOW_COPY_AND_ASSIGN(Panel); | 393 DISALLOW_COPY_AND_ASSIGN(Panel); |
397 }; | 394 }; |
398 | 395 |
399 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ | 396 #endif // CHROME_BROWSER_UI_PANELS_PANEL_H_ |
OLD | NEW |