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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
276 Profile* profile) OVERRIDE; | 276 Profile* profile) OVERRIDE; |
277 virtual void ToggleBookmarkBar() OVERRIDE; | 277 virtual void ToggleBookmarkBar() OVERRIDE; |
278 virtual void ShowAboutChromeDialog() OVERRIDE; | 278 virtual void ShowAboutChromeDialog() OVERRIDE; |
279 virtual void ShowUpdateChromeDialog() OVERRIDE; | 279 virtual void ShowUpdateChromeDialog() OVERRIDE; |
280 virtual void ShowTaskManager() OVERRIDE; | 280 virtual void ShowTaskManager() OVERRIDE; |
281 virtual void ShowBackgroundPages() OVERRIDE; | 281 virtual void ShowBackgroundPages() OVERRIDE; |
282 virtual void ShowBookmarkBubble(const GURL& url, | 282 virtual void ShowBookmarkBubble(const GURL& url, |
283 bool already_bookmarked) OVERRIDE; | 283 bool already_bookmarked) OVERRIDE; |
284 virtual void ShowChromeToMobileBubble() OVERRIDE; | 284 virtual void ShowChromeToMobileBubble() OVERRIDE; |
285 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 285 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
286 virtual void ShowOneClickSigninBubble() OVERRIDE; | 286 virtual void ShowOneClickSigninBubble( |
| 287 const base::Closure& learn_more_callback, |
| 288 const base::Closure& advanced_callback) OVERRIDE; |
287 #endif | 289 #endif |
288 // TODO(beng): Not an override, move somewhere else. | 290 // TODO(beng): Not an override, move somewhere else. |
289 void SetDownloadShelfVisible(bool visible); | 291 void SetDownloadShelfVisible(bool visible); |
290 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 292 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
291 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 293 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
292 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 294 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
293 virtual void UserChangedTheme() OVERRIDE; | 295 virtual void UserChangedTheme() OVERRIDE; |
294 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 296 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
295 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 297 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
296 virtual void ShowPageInfo(Profile* profile, | 298 virtual void ShowPageInfo(Profile* profile, |
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
689 PendingFullscreenRequest fullscreen_request_; | 691 PendingFullscreenRequest fullscreen_request_; |
690 | 692 |
691 BrowserWindowMoveObserver* move_observer_; | 693 BrowserWindowMoveObserver* move_observer_; |
692 | 694 |
693 gfx::ScopedSysColorChangeListener color_change_listener_; | 695 gfx::ScopedSysColorChangeListener color_change_listener_; |
694 | 696 |
695 DISALLOW_COPY_AND_ASSIGN(BrowserView); | 697 DISALLOW_COPY_AND_ASSIGN(BrowserView); |
696 }; | 698 }; |
697 | 699 |
698 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ | 700 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ |
OLD | NEW |