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

Unified Diff: chrome/browser/chrome_browser_main.h

Issue 19957002: Run the later parts of startup as UI thread tasks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Run the later parts of startup as UI thread tasks - minor comment fixes Created 7 years, 5 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
Index: chrome/browser/chrome_browser_main.h
diff --git a/chrome/browser/chrome_browser_main.h b/chrome/browser/chrome_browser_main.h
index 0e092e49ac9ea5126fd83bbc70b45690b576fb96..bcc25ed6df9e5feb5d8307f0cf61e408256ab209 100644
--- a/chrome/browser/chrome_browser_main.h
+++ b/chrome/browser/chrome_browser_main.h
@@ -17,6 +17,7 @@
#include "chrome/browser/ui/startup/startup_browser_creator.h"
#include "content/public/browser/browser_main_parts.h"
#include "content/public/browser/render_view_host.h"
+#include "content/public/common/main_function_params.h"
class ActiveTabTracker;
class BrowserProcessImpl;
@@ -41,10 +42,6 @@ namespace chrome_browser_metrics {
class TrackingSynchronizer;
}
-namespace content {
-struct MainFunctionParams;
-}
-
namespace performance_monitor {
class StartupTimer;
}
@@ -136,7 +133,7 @@ class ChromeBrowserMainParts : public content::BrowserMainParts {
// Members initialized on construction ---------------------------------------
- const content::MainFunctionParams& parameters_;
+ const content::MainFunctionParams parameters_;
aberent 2013/07/22 15:47:35 This change is needed because the parameters are n
const CommandLine& parsed_command_line_;
int result_code_;

Powered by Google App Engine
This is Rietveld 408576698