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

Unified Diff: chrome/app/chrome_main.cc

Issue 2345933002: Break chrome_initial's dependence on //components/startup_metric_utils/browser:lib (Closed)
Patch Set: Created 4 years, 3 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/app/chrome_main.cc
diff --git a/chrome/app/chrome_main.cc b/chrome/app/chrome_main.cc
index d84f8d43ae4be629b9adca43c7fb13d3c80d40d5..39536e9073098df0e81ef92da1cd341fe8691009 100644
--- a/chrome/app/chrome_main.cc
+++ b/chrome/app/chrome_main.cc
@@ -34,7 +34,8 @@ int ChromeMain(int argc, const char** argv);
#if defined(OS_WIN)
DLLEXPORT int __cdecl ChromeMain(HINSTANCE instance,
- sandbox::SandboxInterfaceInfo* sandbox_info) {
+ sandbox::SandboxInterfaceInfo* sandbox_info,
+ int64_t exe_entry_point_ticks) {
#elif defined(OS_POSIX)
int ChromeMain(int argc, const char** argv) {
#endif
@@ -47,7 +48,7 @@ int ChromeMain(int argc, const char** argv) {
_set_FMA3_enable(0);
#endif // WIN && ARCH_CPU_X86_64
- ChromeMainDelegate chrome_main_delegate;
+ ChromeMainDelegate chrome_main_delegate(exe_entry_point_ticks);
content::ContentMainParams params(&chrome_main_delegate);
#if defined(OS_WIN)

Powered by Google App Engine
This is Rietveld 408576698