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_VIEWS_FRAME_BROWSER_VIEW_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
287 virtual void ShowPageInfo(Profile* profile, | 287 virtual void ShowPageInfo(Profile* profile, |
288 const GURL& url, | 288 const GURL& url, |
289 const content::SSLStatus& ssl, | 289 const content::SSLStatus& ssl, |
290 bool show_history) OVERRIDE; | 290 bool show_history) OVERRIDE; |
291 virtual void ShowWebsiteSettings(Profile* profile, | 291 virtual void ShowWebsiteSettings(Profile* profile, |
292 TabContentsWrapper* tab_contents_wrapper, | 292 TabContentsWrapper* tab_contents_wrapper, |
293 const GURL& url, | 293 const GURL& url, |
294 const content::SSLStatus& ssl, | 294 const content::SSLStatus& ssl, |
295 bool show_history) OVERRIDE; | 295 bool show_history) OVERRIDE; |
296 virtual void ShowAppMenu() OVERRIDE; | 296 virtual void ShowAppMenu() OVERRIDE; |
297 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, | 297 virtual bool PreHandleKeyboardEvent( |
298 bool* is_keyboard_shortcut) OVERRIDE; | 298 const content::NativeWebKeyboardEvent& event, |
299 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) | 299 bool* is_keyboard_shortcut) OVERRIDE; |
300 OVERRIDE; | 300 virtual void HandleKeyboardEvent( |
301 virtual void ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) | 301 const content::NativeWebKeyboardEvent& event) OVERRIDE; |
302 OVERRIDE; | 302 virtual void ShowCreateWebAppShortcutsDialog( |
| 303 TabContentsWrapper* tab_contents) OVERRIDE; |
303 virtual void ShowCreateChromeAppShortcutsDialog( | 304 virtual void ShowCreateChromeAppShortcutsDialog( |
304 Profile*, const Extension* app) OVERRIDE; | 305 Profile*, const Extension* app) OVERRIDE; |
305 virtual void Cut() OVERRIDE; | 306 virtual void Cut() OVERRIDE; |
306 virtual void Copy() OVERRIDE; | 307 virtual void Copy() OVERRIDE; |
307 virtual void Paste() OVERRIDE; | 308 virtual void Paste() OVERRIDE; |
308 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; | 309 virtual void ShowInstant(TabContentsWrapper* preview) OVERRIDE; |
309 virtual void HideInstant() OVERRIDE; | 310 virtual void HideInstant() OVERRIDE; |
310 virtual gfx::Rect GetInstantBounds() OVERRIDE; | 311 virtual gfx::Rect GetInstantBounds() OVERRIDE; |
311 virtual WindowOpenDisposition GetDispositionForPopupBounds( | 312 virtual WindowOpenDisposition GetDispositionForPopupBounds( |
312 const gfx::Rect& bounds) OVERRIDE; | 313 const gfx::Rect& bounds) OVERRIDE; |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
670 bool force_location_bar_focus_; | 671 bool force_location_bar_focus_; |
671 | 672 |
672 PendingFullscreenRequest fullscreen_request_; | 673 PendingFullscreenRequest fullscreen_request_; |
673 | 674 |
674 gfx::ScopedSysColorChangeListener color_change_listener_; | 675 gfx::ScopedSysColorChangeListener color_change_listener_; |
675 | 676 |
676 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 677 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
677 }; | 678 }; |
678 | 679 |
679 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 680 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |