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

Side by Side Diff: chrome/browser/ui/tab_contents/core_tab_helper.h

Issue 17151010: Move histograms and supporting code that don't belong in content out. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix Created 7 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_UI_TAB_CONTENTS_CORE_TAB_HELPER_H_ 5 #ifndef CHROME_BROWSER_UI_TAB_CONTENTS_CORE_TAB_HELPER_H_
6 #define CHROME_BROWSER_UI_TAB_CONTENTS_CORE_TAB_HELPER_H_ 6 #define CHROME_BROWSER_UI_TAB_CONTENTS_CORE_TAB_HELPER_H_
7 7
8 #include "base/time.h"
8 #include "content/public/browser/web_contents_observer.h" 9 #include "content/public/browser/web_contents_observer.h"
9 #include "content/public/browser/web_contents_user_data.h" 10 #include "content/public/browser/web_contents_user_data.h"
10 11
11 class CoreTabHelperDelegate; 12 class CoreTabHelperDelegate;
12 13
13 // Per-tab class to handle functionality that is core to the operation of tabs. 14 // Per-tab class to handle functionality that is core to the operation of tabs.
14 class CoreTabHelper : public content::WebContentsObserver, 15 class CoreTabHelper : public content::WebContentsObserver,
15 public content::WebContentsUserData<CoreTabHelper> { 16 public content::WebContentsUserData<CoreTabHelper> {
16 public: 17 public:
17 virtual ~CoreTabHelper(); 18 virtual ~CoreTabHelper();
18 19
19 CoreTabHelperDelegate* delegate() const { return delegate_; }
20 void set_delegate(CoreTabHelperDelegate* d) { delegate_ = d; }
21
22 // Initial title assigned to NavigationEntries from Navigate. 20 // Initial title assigned to NavigationEntries from Navigate.
23 static string16 GetDefaultTitle(); 21 static string16 GetDefaultTitle();
24 22
25 // Returns a human-readable description the tab's loading state. 23 // Returns a human-readable description the tab's loading state.
26 string16 GetStatusText() const; 24 string16 GetStatusText() const;
27 25
26 // Notification that tab closing has started. This can be called multiple
27 // times, subsequent calls are ignored.
28 void OnCloseStarted();
29
30 // Notification that tab closing was cancelled. This can happen when a user
31 // cancels a window close via another tab's beforeunload dialog.
32 void OnCloseCanceled();
33
34 // Set the time during close when unload is started. Normally, this is set
35 // after the beforeunload dialog. However, for a window close, it is set
36 // after all the beforeunload dialogs have finished.
37 void OnUnloadStarted();
38
39 // Set the time during close when the tab is no longer visible.
40 void OnUnloadDetachedStarted();
41
42 CoreTabHelperDelegate* delegate() const { return delegate_; }
43 void set_delegate(CoreTabHelperDelegate* d) { delegate_ = d; }
44
45 void set_new_tab_start_time(const base::TimeTicks& time) {
46 new_tab_start_time_ = time;
47 }
48
49 base::TimeTicks new_tab_start_time() const { return new_tab_start_time_; }
50
28 private: 51 private:
29 explicit CoreTabHelper(content::WebContents* web_contents); 52 explicit CoreTabHelper(content::WebContents* web_contents);
30 friend class content::WebContentsUserData<CoreTabHelper>; 53 friend class content::WebContentsUserData<CoreTabHelper>;
31 54
32 // content::WebContentsObserver overrides: 55 // content::WebContentsObserver overrides:
33 virtual void WasShown() OVERRIDE; 56 virtual void WasShown() OVERRIDE;
57 virtual void WebContentsDestroyed(
58 content::WebContents* web_contents) OVERRIDE;
59 virtual void BeforeUnloadFired(const base::TimeTicks& proceed_time) OVERRIDE;
60 virtual void BeforeUnloadDialogCancelled() OVERRIDE;
34 61
35 // Delegate for notifying our owner about stuff. Not owned by us. 62 // Delegate for notifying our owner about stuff. Not owned by us.
36 CoreTabHelperDelegate* delegate_; 63 CoreTabHelperDelegate* delegate_;
37 64
65 // The time when we started to create the new tab page. This time is from
66 // before we created this WebContents.
67 base::TimeTicks new_tab_start_time_;
68
69 // The time that we started to close this WebContents.
70 base::TimeTicks close_start_time_;
71
72 // The time when onbeforeunload ended.
73 base::TimeTicks before_unload_end_time_;
74
75 // The time when the tab was removed from view during close.
76 base::TimeTicks unload_detached_start_time_;
77
38 DISALLOW_COPY_AND_ASSIGN(CoreTabHelper); 78 DISALLOW_COPY_AND_ASSIGN(CoreTabHelper);
39 }; 79 };
40 80
41 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_CORE_TAB_HELPER_H_ 81 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_CORE_TAB_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698