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. |