Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(334)

Side by Side Diff: chrome/browser/ui/gtk/browser_window_gtk.h

Issue 13979003: Win: Display a native bubble (instead of the JS one) after the web signin flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove unused imports. Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 7
8 #include <gtk/gtk.h> 8 #include <gtk/gtk.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 Profile* profile) OVERRIDE; 128 Profile* profile) OVERRIDE;
129 virtual void ToggleBookmarkBar() OVERRIDE; 129 virtual void ToggleBookmarkBar() OVERRIDE;
130 virtual void ShowUpdateChromeDialog() OVERRIDE; 130 virtual void ShowUpdateChromeDialog() OVERRIDE;
131 virtual void ShowBookmarkBubble(const GURL& url, 131 virtual void ShowBookmarkBubble(const GURL& url,
132 bool already_bookmarked) OVERRIDE; 132 bool already_bookmarked) OVERRIDE;
133 virtual void ShowChromeToMobileBubble() OVERRIDE; 133 virtual void ShowChromeToMobileBubble() OVERRIDE;
134 #if defined(ENABLE_ONE_CLICK_SIGNIN) 134 #if defined(ENABLE_ONE_CLICK_SIGNIN)
135 virtual void ShowOneClickSigninBubble( 135 virtual void ShowOneClickSigninBubble(
136 OneClickSigninBubbleType type, 136 OneClickSigninBubbleType type,
137 const string16& email, 137 const string16& email,
138 const string16& error_message,
138 const StartSyncCallback& start_sync_callback) OVERRIDE; 139 const StartSyncCallback& start_sync_callback) OVERRIDE;
139 #endif 140 #endif
140 virtual bool IsDownloadShelfVisible() const OVERRIDE; 141 virtual bool IsDownloadShelfVisible() const OVERRIDE;
141 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; 142 virtual DownloadShelf* GetDownloadShelf() OVERRIDE;
142 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; 143 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE;
143 virtual void UserChangedTheme() OVERRIDE; 144 virtual void UserChangedTheme() OVERRIDE;
144 virtual int GetExtraRenderViewHeight() const OVERRIDE; 145 virtual int GetExtraRenderViewHeight() const OVERRIDE;
145 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; 146 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE;
146 virtual void ShowWebsiteSettings(Profile* profile, 147 virtual void ShowWebsiteSettings(Profile* profile,
147 content::WebContents* web_contents, 148 content::WebContents* web_contents,
(...skipping 426 matching lines...) Expand 10 before | Expand all | Expand 10 after
574 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_; 575 scoped_ptr<FullscreenExitBubbleGtk> fullscreen_exit_bubble_;
575 576
576 FullscreenExitBubbleType fullscreen_exit_bubble_type_; 577 FullscreenExitBubbleType fullscreen_exit_bubble_type_;
577 578
578 content::NotificationRegistrar registrar_; 579 content::NotificationRegistrar registrar_;
579 580
580 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); 581 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk);
581 }; 582 };
582 583
583 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 584 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698