OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 // so that it can be tracked into an histogram. | 142 // so that it can be tracked into an histogram. |
143 virtual void LogResourceRequestTime( | 143 virtual void LogResourceRequestTime( |
144 base::TimeTicks timestamp, const GURL& url) {}; | 144 base::TimeTicks timestamp, const GURL& url) {}; |
145 | 145 |
146 // Called to record the time it took to execute the before unload hook for the | 146 // Called to record the time it took to execute the before unload hook for the |
147 // current navigation. | 147 // current navigation. |
148 virtual void LogBeforeUnloadTime( | 148 virtual void LogBeforeUnloadTime( |
149 const base::TimeTicks& renderer_before_unload_start_time, | 149 const base::TimeTicks& renderer_before_unload_start_time, |
150 const base::TimeTicks& renderer_before_unload_end_time) {} | 150 const base::TimeTicks& renderer_before_unload_end_time) {} |
151 | 151 |
| 152 // PlzNavigate |
| 153 // Returns whether there is an ongoing navigation waiting for the BeforeUnload |
| 154 // event to execute in the renderer process. |
| 155 virtual bool IsWaitingForBeforeUnloadACK(FrameTreeNode* frame_tree_node); |
| 156 |
152 protected: | 157 protected: |
153 friend class base::RefCounted<Navigator>; | 158 friend class base::RefCounted<Navigator>; |
154 virtual ~Navigator() {} | 159 virtual ~Navigator() {} |
155 }; | 160 }; |
156 | 161 |
157 } // namespace content | 162 } // namespace content |
158 | 163 |
159 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_ | 164 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_H_ |
OLD | NEW |