| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_NAVIGATION_HANDLE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
| 7 | 7 |
| 8 #include "content/public/browser/navigation_handle.h" | 8 #include "content/public/browser/navigation_handle.h" |
| 9 | 9 |
| 10 #include <stddef.h> | 10 #include <stddef.h> |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 | 584 |
| 585 // PlzNavigate | 585 // PlzNavigate |
| 586 // Used to inform a RenderProcessHost that we expect this navigation to commit | 586 // Used to inform a RenderProcessHost that we expect this navigation to commit |
| 587 // in it. | 587 // in it. |
| 588 int expected_render_process_host_id_; | 588 int expected_render_process_host_id_; |
| 589 | 589 |
| 590 // TODO(arthursonzogni): Remove this when we understand the root cause behind | 590 // TODO(arthursonzogni): Remove this when we understand the root cause behind |
| 591 // crbug.com/704892. | 591 // crbug.com/704892. |
| 592 bool is_in_constructor; | 592 bool is_in_constructor; |
| 593 | 593 |
| 594 // TODO(clamy): Remove this when we understand the root cause behind |
| 595 // crbug.com/736658. |
| 596 bool throttles_have_been_added_ = false; |
| 597 |
| 594 base::WeakPtrFactory<NavigationHandleImpl> weak_factory_; | 598 base::WeakPtrFactory<NavigationHandleImpl> weak_factory_; |
| 595 | 599 |
| 596 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); | 600 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); |
| 597 }; | 601 }; |
| 598 | 602 |
| 599 } // namespace content | 603 } // namespace content |
| 600 | 604 |
| 601 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 605 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
| OLD | NEW |