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

Unified Diff: chrome/app/main_dll_loader_win.h

Issue 2345933002: Break chrome_initial's dependence on //components/startup_metric_utils/browser:lib (Closed)
Patch Set: more fixes 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/main_dll_loader_win.h
diff --git a/chrome/app/main_dll_loader_win.h b/chrome/app/main_dll_loader_win.h
index 77db2ccb55165485a3b608af89cd35b68077ae18..a2655fb35e8102ecf32888a4f027441f756fcd65 100644
--- a/chrome/app/main_dll_loader_win.h
+++ b/chrome/app/main_dll_loader_win.h
@@ -15,6 +15,7 @@
namespace base {
class FilePath;
+class TimeTicks;
}
// Implements the common aspects of loading the main dll for both chrome and
@@ -26,10 +27,11 @@ class MainDllLoader {
virtual ~MainDllLoader();
// Loads and calls the entry point of chrome.dll. |instance| is the exe
- // instance retrieved from wWinMain.
+ // instance retrieved from wWinMain. |exe_entry_point_ticks| is the time
+ // when wWinMain was entered.
// The return value is what the main entry point of chrome.dll returns
// upon termination.
- int Launch(HINSTANCE instance);
+ int Launch(HINSTANCE instance, const base::TimeTicks& exe_entry_point_ticks);
// Launches a new instance of the browser if the current instance in
// persistent mode an upgrade is detected.

Powered by Google App Engine
This is Rietveld 408576698