OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 // The LoadNotificationDetails object contains additional details about a | 5 // The LoadNotificationDetails object contains additional details about a |
6 // page load that has been completed. It was created to let the MetricsService | 6 // page load that has been completed. It was created to let the MetricsService |
7 // log page load metrics. | 7 // log page load metrics. |
8 | 8 |
9 #ifndef CHROME_BROWSER_LOAD_NOTIFICATION_DETAILS_H__ | 9 #ifndef CONTENT_BROWSER_LOAD_NOTIFICATION_DETAILS_H_ |
10 #define CHROME_BROWSER_LOAD_NOTIFICATION_DETAILS_H__ | 10 #define CONTENT_BROWSER_LOAD_NOTIFICATION_DETAILS_H_ |
11 #pragma once | 11 #pragma once |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/time.h" | 14 #include "base/time.h" |
15 #include "content/browser/tab_contents/navigation_controller.h" | 15 #include "content/browser/tab_contents/navigation_controller.h" |
16 #include "content/common/page_transition_types.h" | 16 #include "content/common/page_transition_types.h" |
17 #include "googleurl/src/gurl.h" | 17 #include "googleurl/src/gurl.h" |
18 | 18 |
19 class LoadNotificationDetails { | 19 class LoadNotificationDetails { |
20 public: | 20 public: |
(...skipping 10 matching lines...) Expand all Loading... |
31 | 31 |
32 ~LoadNotificationDetails() {} | 32 ~LoadNotificationDetails() {} |
33 | 33 |
34 const GURL& url() const { return url_; } | 34 const GURL& url() const { return url_; } |
35 PageTransition::Type origin() const { return origin_; } | 35 PageTransition::Type origin() const { return origin_; } |
36 base::TimeDelta load_time() const { return load_time_; } | 36 base::TimeDelta load_time() const { return load_time_; } |
37 int session_index() const { return session_index_; } | 37 int session_index() const { return session_index_; } |
38 NavigationController* controller() const { return controller_; } | 38 NavigationController* controller() const { return controller_; } |
39 | 39 |
40 private: | 40 private: |
41 GURL url_; // the URL loaded | 41 // The URL loaded. |
42 base::TimeDelta load_time_; // length of time the page load took | 42 GURL url_; |
43 int session_index_; // index of the load within the tab session | 43 |
44 PageTransition::Type origin_; // type of action that caused the load | 44 // The length of time the page load took. |
45 NavigationController* controller_; // tells us which tab the load was in | 45 base::TimeDelta load_time_; |
| 46 |
| 47 // The index of the load within the tab session. |
| 48 int session_index_; |
| 49 |
| 50 // The type of action that caused the load. |
| 51 PageTransition::Type origin_; |
| 52 |
| 53 // The NavigationController for the load. |
| 54 NavigationController* controller_; |
46 | 55 |
47 LoadNotificationDetails() {} | 56 LoadNotificationDetails() {} |
48 | 57 |
49 DISALLOW_COPY_AND_ASSIGN(LoadNotificationDetails); | 58 DISALLOW_COPY_AND_ASSIGN(LoadNotificationDetails); |
50 }; | 59 }; |
51 | 60 |
52 #endif // CHROME_BROWSER_LOAD_NOTIFICATION_DETAILS_H__ | 61 #endif // CONTENT_BROWSER_LOAD_NOTIFICATION_DETAILS_H_ |
OLD | NEW |