| 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> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/timer.h" | 15 #include "base/timer.h" |
| 16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
| 17 #include "chrome/browser/infobars/infobar_container.h" | 17 #include "chrome/browser/infobars/infobar_container.h" |
| 18 #include "chrome/browser/tabs/tab_strip_model_observer.h" | 18 #include "chrome/browser/tabs/tab_strip_model_observer.h" |
| 19 #include "chrome/browser/ui/browser.h" | 19 #include "chrome/browser/ui/browser.h" |
| 20 #include "chrome/browser/ui/browser_window.h" | 20 #include "chrome/browser/ui/browser_window.h" |
| 21 #include "chrome/browser/ui/views/frame/browser_frame.h" | 21 #include "chrome/browser/ui/views/frame/browser_frame.h" |
| 22 #include "chrome/browser/ui/views/tab_contents/tab_contents_container.h" | |
| 23 #include "chrome/browser/ui/views/tabs/abstract_tab_strip_view.h" | 22 #include "chrome/browser/ui/views/tabs/abstract_tab_strip_view.h" |
| 24 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" | 23 #include "chrome/browser/ui/views/unhandled_keyboard_event_handler.h" |
| 25 #include "ui/base/models/simple_menu_model.h" | 24 #include "ui/base/models/simple_menu_model.h" |
| 26 #include "ui/gfx/native_widget_types.h" | 25 #include "ui/gfx/native_widget_types.h" |
| 27 #include "ui/views/controls/single_split_view_listener.h" | 26 #include "ui/views/controls/single_split_view_listener.h" |
| 28 #include "ui/views/widget/widget_delegate.h" | 27 #include "ui/views/widget/widget_delegate.h" |
| 29 #include "ui/views/window/client_view.h" | 28 #include "ui/views/window/client_view.h" |
| 30 | 29 |
| 31 #if defined(OS_WIN) | 30 #if defined(OS_WIN) |
| 32 #include "chrome/browser/hang_monitor/hung_plugin_action.h" | 31 #include "chrome/browser/hang_monitor/hung_plugin_action.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 43 class BrowserWindowMoveObserver; | 42 class BrowserWindowMoveObserver; |
| 44 class ContentsContainer; | 43 class ContentsContainer; |
| 45 class DownloadShelfView; | 44 class DownloadShelfView; |
| 46 class EncodingMenuModel; | 45 class EncodingMenuModel; |
| 47 class Extension; | 46 class Extension; |
| 48 class FullscreenExitBubbleViews; | 47 class FullscreenExitBubbleViews; |
| 49 class InfoBarContainerView; | 48 class InfoBarContainerView; |
| 50 class LocationBarView; | 49 class LocationBarView; |
| 51 class StatusBubbleViews; | 50 class StatusBubbleViews; |
| 52 class TabContentsContainer; | 51 class TabContentsContainer; |
| 52 class TabContentsContainer; |
| 53 class TabStripModel; | 53 class TabStripModel; |
| 54 class ToolbarView; | 54 class ToolbarView; |
| 55 class ZoomMenuModel; | 55 class ZoomMenuModel; |
| 56 | 56 |
| 57 #if defined(OS_WIN) | 57 #if defined(OS_WIN) |
| 58 class AeroPeekManager; | 58 class AeroPeekManager; |
| 59 class JumpList; | 59 class JumpList; |
| 60 #endif | 60 #endif |
| 61 | 61 |
| 62 #if defined(USE_AURA) | 62 #if defined(USE_AURA) |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 virtual void FocusAppMenu() OVERRIDE; | 267 virtual void FocusAppMenu() OVERRIDE; |
| 268 virtual void FocusBookmarksToolbar() OVERRIDE; | 268 virtual void FocusBookmarksToolbar() OVERRIDE; |
| 269 virtual void FocusChromeOSStatus() OVERRIDE {} | 269 virtual void FocusChromeOSStatus() OVERRIDE {} |
| 270 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 270 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
| 271 virtual void DestroyBrowser() OVERRIDE; | 271 virtual void DestroyBrowser() OVERRIDE; |
| 272 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 272 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
| 273 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 273 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 274 virtual bool IsTabStripEditable() const OVERRIDE; | 274 virtual bool IsTabStripEditable() const OVERRIDE; |
| 275 virtual bool IsToolbarVisible() const OVERRIDE; | 275 virtual bool IsToolbarVisible() const OVERRIDE; |
| 276 virtual bool IsPanel() const OVERRIDE; | 276 virtual bool IsPanel() const OVERRIDE; |
| 277 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 277 virtual void DisableInactiveFrame() OVERRIDE; | 278 virtual void DisableInactiveFrame() OVERRIDE; |
| 278 virtual void ConfirmSetDefaultSearchProvider( | 279 virtual void ConfirmSetDefaultSearchProvider( |
| 279 content::WebContents* web_contents, | 280 content::WebContents* web_contents, |
| 280 TemplateURL* template_url, | 281 TemplateURL* template_url, |
| 281 Profile* profile) OVERRIDE; | 282 Profile* profile) OVERRIDE; |
| 282 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, | 283 virtual void ConfirmAddSearchProvider(const TemplateURL* template_url, |
| 283 Profile* profile) OVERRIDE; | 284 Profile* profile) OVERRIDE; |
| 284 virtual void ToggleBookmarkBar() OVERRIDE; | 285 virtual void ToggleBookmarkBar() OVERRIDE; |
| 285 virtual void ShowAboutChromeDialog() OVERRIDE; | 286 virtual void ShowAboutChromeDialog() OVERRIDE; |
| 286 virtual void ShowUpdateChromeDialog() OVERRIDE; | 287 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 bool force_location_bar_focus_; | 706 bool force_location_bar_focus_; |
| 706 | 707 |
| 707 PendingFullscreenRequest fullscreen_request_; | 708 PendingFullscreenRequest fullscreen_request_; |
| 708 | 709 |
| 709 BrowserWindowMoveObserver* move_observer_; | 710 BrowserWindowMoveObserver* move_observer_; |
| 710 | 711 |
| 711 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 712 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 712 }; | 713 }; |
| 713 | 714 |
| 714 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 715 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |