Commit bc12f05d authored by thakis@chromium.org's avatar thakis@chromium.org

Mac: Disable first-run bubble for m6.

BUG=52726
TEST=Run chrome with a new profile. No bubble should show up.

Review URL: http://codereview.chromium.org/3132031

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56908 0039d316-1c4b-4281-b951-d872f2087c98
parent af801acd
......@@ -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(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment