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

Unified Diff: chrome/app/chrome_main_delegate.h

Issue 2345933002: Break chrome_initial's dependence on //components/startup_metric_utils/browser:lib (Closed)
Patch Set: ticks everywhere 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_delegate.h
diff --git a/chrome/app/chrome_main_delegate.h b/chrome/app/chrome_main_delegate.h
index 6751de27ff18ab7648d1f31f25f319a818137931..649ac59e1ec1cc11308f3011e41e4ba4741ef147 100644
--- a/chrome/app/chrome_main_delegate.h
+++ b/chrome/app/chrome_main_delegate.h
@@ -5,6 +5,8 @@
#ifndef CHROME_APP_CHROME_MAIN_DELEGATE_H_
#define CHROME_APP_CHROME_MAIN_DELEGATE_H_
+#include <stdint.h>
+
#include <memory>
#include "base/macros.h"
@@ -23,6 +25,9 @@ class CommandLine;
class ChromeMainDelegate : public content::ContentMainDelegate {
public:
ChromeMainDelegate();
+ // |exe_entry_point_ticks| is the time at which the main function of the
+ // executable was entered, or 0 if not available.
+ explicit ChromeMainDelegate(int64_t exe_entry_point_ticks);
fdoray 2016/09/20 12:25:22 I understand why it's more conservative to use int
grt (UTC plus 2) 2016/09/20 19:20:26 I like it. Done.
~ChromeMainDelegate() override;
protected:

Powered by Google App Engine
This is Rietveld 408576698