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

Unified Diff: chrome/browser/ui/cocoa/browser_window_cocoa.mm

Issue 841163002: MacViews: Fix duplicate ShowSessionCrashBubble and ShowProfileResetBubble (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@keybinding
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/cocoa/browser_window_cocoa.h ('k') | chrome/browser/ui/profile_reset_bubble.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/browser_window_cocoa.mm
diff --git a/chrome/browser/ui/cocoa/browser_window_cocoa.mm b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
index 6eb669fd10a2d4cee9ccf3e920769221ded2bba3..7878c98b66c66e3ef03236af5bceeaa8a28c6efc 100644
--- a/chrome/browser/ui/cocoa/browser_window_cocoa.mm
+++ b/chrome/browser/ui/cocoa/browser_window_cocoa.mm
@@ -623,6 +623,20 @@ void BrowserWindowCocoa::ShowTranslateBubble(
errorType:error_type];
}
+bool BrowserWindowCocoa::ShowSessionCrashedBubble() {
+ return false;
+}
+
+bool BrowserWindowCocoa::IsProfileResetBubbleSupported() const {
+ return false;
+}
+
+GlobalErrorBubbleViewBase* BrowserWindowCocoa::ShowProfileResetBubble(
+ const base::WeakPtr<ProfileResetGlobalError>& global_error) {
+ NOTREACHED();
+ return nullptr;
+}
+
#if defined(ENABLE_ONE_CLICK_SIGNIN)
void BrowserWindowCocoa::ShowOneClickSigninBubble(
OneClickSigninBubbleType type,
« no previous file with comments | « chrome/browser/ui/cocoa/browser_window_cocoa.h ('k') | chrome/browser/ui/profile_reset_bubble.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698