| 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> |
| 11 | 11 |
| 12 #include <memory> | 12 #include <memory> |
| 13 #include <string> | 13 #include <string> |
| 14 #include <utility> | 14 #include <utility> |
| 15 #include <vector> | 15 #include <vector> |
| 16 | 16 |
| 17 #include "base/callback.h" | 17 #include "base/callback.h" |
| 18 #include "base/macros.h" | 18 #include "base/macros.h" |
| 19 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
| 20 #include "base/memory/scoped_vector.h" | |
| 21 #include "content/browser/frame_host/frame_tree_node.h" | 20 #include "content/browser/frame_host/frame_tree_node.h" |
| 22 #include "content/browser/frame_host/render_frame_host_impl.h" | 21 #include "content/browser/frame_host/render_frame_host_impl.h" |
| 23 #include "content/common/content_export.h" | 22 #include "content/common/content_export.h" |
| 24 #include "content/public/browser/global_request_id.h" | 23 #include "content/public/browser/global_request_id.h" |
| 25 #include "content/public/browser/navigation_data.h" | 24 #include "content/public/browser/navigation_data.h" |
| 26 #include "content/public/browser/navigation_throttle.h" | 25 #include "content/public/browser/navigation_throttle.h" |
| 27 #include "content/public/browser/navigation_type.h" | 26 #include "content/public/browser/navigation_type.h" |
| 28 #include "content/public/browser/restore_type.h" | 27 #include "content/public/browser/restore_type.h" |
| 29 #include "content/public/browser/ssl_status.h" | 28 #include "content/public/browser/ssl_status.h" |
| 30 #include "content/public/common/request_context_type.h" | 29 #include "content/public/common/request_context_type.h" |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 516 NavigationType navigation_type_; | 515 NavigationType navigation_type_; |
| 517 | 516 |
| 518 base::WeakPtrFactory<NavigationHandleImpl> weak_factory_; | 517 base::WeakPtrFactory<NavigationHandleImpl> weak_factory_; |
| 519 | 518 |
| 520 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); | 519 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); |
| 521 }; | 520 }; |
| 522 | 521 |
| 523 } // namespace content | 522 } // namespace content |
| 524 | 523 |
| 525 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 524 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
| OLD | NEW |