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_GTK_BROWSER_WINDOW_GTK_H_ | 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <gtk/gtk.h> | 9 #include <gtk/gtk.h> |
10 | 10 |
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 virtual void ToggleBookmarkBar() OVERRIDE; | 118 virtual void ToggleBookmarkBar() OVERRIDE; |
119 virtual void ShowAboutChromeDialog() OVERRIDE; | 119 virtual void ShowAboutChromeDialog() OVERRIDE; |
120 virtual void ShowUpdateChromeDialog() OVERRIDE; | 120 virtual void ShowUpdateChromeDialog() OVERRIDE; |
121 virtual void ShowTaskManager() OVERRIDE; | 121 virtual void ShowTaskManager() OVERRIDE; |
122 virtual void ShowBackgroundPages() OVERRIDE; | 122 virtual void ShowBackgroundPages() OVERRIDE; |
123 virtual void ShowBookmarkBubble(const GURL& url, | 123 virtual void ShowBookmarkBubble(const GURL& url, |
124 bool already_bookmarked) OVERRIDE; | 124 bool already_bookmarked) OVERRIDE; |
125 virtual void ShowChromeToMobileBubble() OVERRIDE; | 125 virtual void ShowChromeToMobileBubble() OVERRIDE; |
126 #if defined(ENABLE_ONE_CLICK_SIGNIN) | 126 #if defined(ENABLE_ONE_CLICK_SIGNIN) |
127 virtual void ShowOneClickSigninBubble( | 127 virtual void ShowOneClickSigninBubble( |
128 const base::Closure& learn_more_callback, | 128 const base::Callback<void(bool)>& start_sync_callback) OVERRIDE; |
129 const base::Closure& advanced_callback) OVERRIDE; | |
130 #endif | 129 #endif |
131 virtual bool IsDownloadShelfVisible() const OVERRIDE; | 130 virtual bool IsDownloadShelfVisible() const OVERRIDE; |
132 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; | 131 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; |
133 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; | 132 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; |
134 virtual void UserChangedTheme() OVERRIDE; | 133 virtual void UserChangedTheme() OVERRIDE; |
135 virtual int GetExtraRenderViewHeight() const OVERRIDE; | 134 virtual int GetExtraRenderViewHeight() const OVERRIDE; |
136 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; | 135 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; |
137 virtual void ShowPageInfo(Profile* profile, | 136 virtual void ShowPageInfo(Profile* profile, |
138 const GURL& url, | 137 const GURL& url, |
139 const content::SSLStatus& ssl, | 138 const content::SSLStatus& ssl, |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
562 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; | 561 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; |
563 | 562 |
564 FullscreenExitBubbleType fullscreen_exit_bubble_type_; | 563 FullscreenExitBubbleType fullscreen_exit_bubble_type_; |
565 | 564 |
566 content::NotificationRegistrar registrar_; | 565 content::NotificationRegistrar registrar_; |
567 | 566 |
568 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); | 567 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); |
569 }; | 568 }; |
570 | 569 |
571 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ | 570 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ |
OLD | NEW |