| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 305 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
| 306 virtual bool IsTabStripEditable() const OVERRIDE; | 306 virtual bool IsTabStripEditable() const OVERRIDE; |
| 307 virtual bool IsToolbarVisible() const OVERRIDE; | 307 virtual bool IsToolbarVisible() const OVERRIDE; |
| 308 virtual bool IsPanel() const OVERRIDE; | 308 virtual bool IsPanel() const OVERRIDE; |
| 309 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 309 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
| 310 virtual void DisableInactiveFrame() OVERRIDE; | 310 virtual void DisableInactiveFrame() OVERRIDE; |
| 311 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 311 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
| 312 Profile* profile) OVERRIDE; | 312 Profile* profile) OVERRIDE; |
| 313 virtual void ToggleBookmarkBar() OVERRIDE; | 313 virtual void ToggleBookmarkBar() OVERRIDE; |
| 314 virtual void ShowUpdateChromeDialog() OVERRIDE; | 314 virtual void ShowUpdateChromeDialog() OVERRIDE; |
| 315 virtual void ShowTaskManager() OVERRIDE; | |
| 316 virtual void ShowBackgroundPages() OVERRIDE; | |
| 317 virtual void ShowBookmarkBubble(const GURL& url, | 315 virtual void ShowBookmarkBubble(const GURL& url, |
| 318 bool already_bookmarked) OVERRIDE; | 316 bool already_bookmarked) OVERRIDE; |
| 319 virtual void ShowBookmarkPrompt() OVERRIDE; | 317 virtual void ShowBookmarkPrompt() OVERRIDE; |
| 320 virtual void ShowChromeToMobileBubble() OVERRIDE; | 318 virtual void ShowChromeToMobileBubble() OVERRIDE; |
| 321 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 319 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
| 322 virtual void ShowOneClickSigninBubble( | 320 virtual void ShowOneClickSigninBubble( |
| 323 OneClickSigninBubbleType type, | 321 OneClickSigninBubbleType type, |
| 324 const StartSyncCallback& start_sync_callback) OVERRIDE; | 322 const StartSyncCallback& start_sync_callback) OVERRIDE; |
| 325 #endif | 323 #endif |
| 326 // TODO(beng): Not an override, move somewhere else. | 324 // TODO(beng): Not an override, move somewhere else. |
| (...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 756 gfx::ScopedSysColorChangeListener color_change_listener_; | 754 gfx::ScopedSysColorChangeListener color_change_listener_; |
| 757 | 755 |
| 758 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; | 756 scoped_ptr<InstantOverlayControllerViews> overlay_controller_; |
| 759 | 757 |
| 760 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; | 758 mutable base::WeakPtrFactory<BrowserView> activate_modal_dialog_factory_; |
| 761 | 759 |
| 762 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 760 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
| 763 }; | 761 }; |
| 764 | 762 |
| 765 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 763 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
| OLD | NEW |