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

Unified Diff: chrome/browser/browser_init.cc

Issue 126185: Improved tab overview animations with better animation and wiring to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 6 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 | chrome/browser/gtk/browser_window_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_init.cc
===================================================================
--- chrome/browser/browser_init.cc (revision 18480)
+++ chrome/browser/browser_init.cc (working copy)
@@ -60,6 +60,10 @@
#include "base/win_util.h"
#endif
+#if defined(LINUX2)
+#include "chrome/browser/views/tabs/tab_overview_message_listener.h"
+#endif
+
namespace {
class SetAsDefaultBrowserTask : public Task {
@@ -336,6 +340,11 @@
*return_code = ResultCodes::INVALID_CMDLINE_URL;
return false;
}
+
+#if defined(LINUX2)
+ // Force creation of the message listener.
+ TabOverviewMessageListener::instance();
Ben Goodger (Google) 2009/06/16 11:44:47 Ew. Why?
sky 2009/06/16 14:25:26 Why force creation? TabOverviewMessageListener ins
+#endif
return true;
}
« no previous file with comments | « no previous file | chrome/browser/gtk/browser_window_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698