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 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 virtual void FocusAppMenu() OVERRIDE; | 310 virtual void FocusAppMenu() OVERRIDE; |
311 virtual void FocusBookmarksToolbar() OVERRIDE; | 311 virtual void FocusBookmarksToolbar() OVERRIDE; |
312 virtual void FocusInfobars() OVERRIDE; | 312 virtual void FocusInfobars() OVERRIDE; |
313 virtual void RotatePaneFocus(bool forwards) OVERRIDE; | 313 virtual void RotatePaneFocus(bool forwards) OVERRIDE; |
314 virtual void DestroyBrowser() OVERRIDE; | 314 virtual void DestroyBrowser() OVERRIDE; |
315 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 315 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
316 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 316 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
317 virtual bool IsTabStripEditable() const OVERRIDE; | 317 virtual bool IsTabStripEditable() const OVERRIDE; |
318 virtual bool IsToolbarVisible() const OVERRIDE; | 318 virtual bool IsToolbarVisible() const OVERRIDE; |
319 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 319 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
320 virtual void DisableInactiveFrame() OVERRIDE; | |
321 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 320 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
322 Profile* profile) OVERRIDE; | 321 Profile* profile) OVERRIDE; |
323 virtual void ShowUpdateChromeDialog() OVERRIDE; | 322 virtual void ShowUpdateChromeDialog() OVERRIDE; |
324 virtual void ShowBookmarkBubble(const GURL& url, | 323 virtual void ShowBookmarkBubble(const GURL& url, |
325 bool already_bookmarked) OVERRIDE; | 324 bool already_bookmarked) OVERRIDE; |
326 virtual void ShowBookmarkPrompt() OVERRIDE; | 325 virtual void ShowBookmarkPrompt() OVERRIDE; |
327 virtual void ShowTranslateBubble( | 326 virtual void ShowTranslateBubble( |
328 content::WebContents* contents, | 327 content::WebContents* contents, |
329 TranslateBubbleModel::ViewState view_state, | 328 TranslateBubbleModel::ViewState view_state, |
330 TranslateErrors::Type error_type) OVERRIDE; | 329 TranslateErrors::Type error_type) OVERRIDE; |
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
720 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; | 719 scoped_ptr<ScrollEndEffectController> scroll_end_effect_controller_; |
721 | 720 |
722 gfx::ScopedSysColorChangeListener color_change_listener_; | 721 gfx::ScopedSysColorChangeListener color_change_listener_; |
723 | 722 |
724 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 723 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
725 | 724 |
726 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 725 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
727 }; | 726 }; |
728 | 727 |
729 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 728 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |