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

Unified Diff: chrome/browser/cocoa/location_bar/location_bar_view_mac.mm

Issue 3132031: Mac: Disable first-run bubble for m6. (Closed)
Patch Set: Created 10 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
diff --git a/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
index fd1acb9bc9934ed5b5ba71c5c151d966dcd4a7b8..5c24fec1283a986e66d958d534b3a5a0768e8ad1 100644
--- a/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
+++ b/chrome/browser/cocoa/location_bar/location_bar_view_mac.mm
@@ -101,11 +101,13 @@ LocationBarViewMac::~LocationBarViewMac() {
}
void LocationBarViewMac::ShowFirstRunBubble(FirstRun::BubbleType bubble_type) {
+ // Disabled for chrome 6: http://crbug.com/52726
+
// We need the browser window to be shown before we can show the bubble, but
// we get called before that's happened.
- Task* task = first_run_bubble_.NewRunnableMethod(
- &LocationBarViewMac::ShowFirstRunBubbleInternal, bubble_type);
- MessageLoop::current()->PostTask(FROM_HERE, task);
+ //Task* task = first_run_bubble_.NewRunnableMethod(
+ // &LocationBarViewMac::ShowFirstRunBubbleInternal, bubble_type);
+ //MessageLoop::current()->PostTask(FROM_HERE, task);
}
void LocationBarViewMac::ShowFirstRunBubbleInternal(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698