diff options
author | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-21 21:29:12 +0000 |
---|---|---|
committer | jeremy@chromium.org <jeremy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-21 21:29:12 +0000 |
commit | 6d65a46ab8dff07d44aea625222587e09aae06ca (patch) | |
tree | 68d59bf622916f4a487308e3fbfa82224699e486 /content/browser/web_contents/web_contents_impl.h | |
parent | e52291df4e21fb9857f7225b86ca50fbcb8cc583 (diff) | |
download | chromium_src-6d65a46ab8dff07d44aea625222587e09aae06ca.zip chromium_src-6d65a46ab8dff07d44aea625222587e09aae06ca.tar.gz chromium_src-6d65a46ab8dff07d44aea625222587e09aae06ca.tar.bz2 |
Move histograms and supporting code that don't belong in content out.
This CL was originally based on top of r205149 (Fast Tab Closure) and committed as r207181. The Fast Tab Closure CL was backed out together with the previous version of this CL.
Here's another shot, doing the same cleanup as before but with r205149 reverted.
BUG=
Review URL: https://chromiumcodereview.appspot.com/17153008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@207925 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/web_contents/web_contents_impl.h')
-rw-r--r-- | content/browser/web_contents/web_contents_impl.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h index a91a4c6..df7d535 100644 --- a/content/browser/web_contents/web_contents_impl.h +++ b/content/browser/web_contents/web_contents_impl.h @@ -264,10 +264,7 @@ class CONTENT_EXPORT WebContentsImpl virtual void SetOverrideEncoding(const std::string& encoding) OVERRIDE; virtual void ResetOverrideEncoding() OVERRIDE; virtual RendererPreferences* GetMutableRendererPrefs() OVERRIDE; - virtual void SetNewTabStartTime(const base::TimeTicks& time) OVERRIDE; - virtual base::TimeTicks GetNewTabStartTime() const OVERRIDE; virtual void Close() OVERRIDE; - virtual void OnCloseStarted() OVERRIDE; virtual void SystemDragEnded() OVERRIDE; virtual void UserGestureDone() OVERRIDE; virtual void SetClosedByUserGesture(bool value) OVERRIDE; @@ -870,15 +867,6 @@ class CONTENT_EXPORT WebContentsImpl // Settings that get passed to the renderer process. RendererPreferences renderer_preferences_; - // The time that we started to create the new tab page. - base::TimeTicks new_tab_start_time_; - - // The time that we started to close this WebContents. - base::TimeTicks close_start_time_; - - // The time when onbeforeunload ended. - base::TimeTicks before_unload_end_time_; - // The time that this tab was last selected. base::TimeTicks last_selected_time_; |