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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
286 virtual bool IsBookmarkBarVisible() const OVERRIDE; | 286 virtual bool IsBookmarkBarVisible() const OVERRIDE; |
287 virtual bool IsBookmarkBarAnimating() const OVERRIDE; | 287 virtual bool IsBookmarkBarAnimating() const OVERRIDE; |
288 virtual bool IsTabStripEditable() const OVERRIDE; | 288 virtual bool IsTabStripEditable() const OVERRIDE; |
289 virtual bool IsToolbarVisible() const OVERRIDE; | 289 virtual bool IsToolbarVisible() const OVERRIDE; |
290 virtual bool IsPanel() const OVERRIDE; | 290 virtual bool IsPanel() const OVERRIDE; |
291 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; | 291 virtual gfx::Rect GetRootWindowResizerRect() const OVERRIDE; |
292 virtual void DisableInactiveFrame() OVERRIDE; | 292 virtual void DisableInactiveFrame() OVERRIDE; |
293 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, | 293 virtual void ConfirmAddSearchProvider(TemplateURL* template_url, |
294 Profile* profile) OVERRIDE; | 294 Profile* profile) OVERRIDE; |
295 virtual void ToggleBookmarkBar() OVERRIDE; | 295 virtual void ToggleBookmarkBar() OVERRIDE; |
296 virtual void ShowAboutChromeDialog() OVERRIDE; | |
297 virtual void ShowUpdateChromeDialog() OVERRIDE; | 296 virtual void ShowUpdateChromeDialog() OVERRIDE; |
298 virtual void ShowTaskManager() OVERRIDE; | 297 virtual void ShowTaskManager() OVERRIDE; |
299 virtual void ShowBackgroundPages() OVERRIDE; | 298 virtual void ShowBackgroundPages() OVERRIDE; |
300 virtual void ShowBookmarkBubble(const GURL& url, | 299 virtual void ShowBookmarkBubble(const GURL& url, |
301 bool already_bookmarked) OVERRIDE; | 300 bool already_bookmarked) OVERRIDE; |
302 virtual void ShowChromeToMobileBubble() OVERRIDE; | 301 virtual void ShowChromeToMobileBubble() OVERRIDE; |
303 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 302 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
304 virtual void ShowOneClickSigninBubble( | 303 virtual void ShowOneClickSigninBubble( |
305 const StartSyncCallback& start_sync_callback) OVERRIDE; | 304 const StartSyncCallback& start_sync_callback) OVERRIDE; |
306 #endif | 305 #endif |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 gfx::ScopedSysColorChangeListener color_change_listener_; | 711 gfx::ScopedSysColorChangeListener color_change_listener_; |
713 | 712 |
714 #if defined(USE_AURA) | 713 #if defined(USE_AURA) |
715 scoped_ptr<SearchViewController> search_view_controller_; | 714 scoped_ptr<SearchViewController> search_view_controller_; |
716 #endif | 715 #endif |
717 | 716 |
718 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 717 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
719 }; | 718 }; |
720 | 719 |
721 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 720 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |