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> |
| 11 |
10 #include "base/callback.h" | 12 #include "base/callback.h" |
11 #include "base/macros.h" | 13 #include "base/macros.h" |
12 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
14 #include "content/browser/frame_host/frame_tree_node.h" | 16 #include "content/browser/frame_host/frame_tree_node.h" |
15 #include "content/browser/frame_host/render_frame_host_impl.h" | 17 #include "content/browser/frame_host/render_frame_host_impl.h" |
16 #include "content/common/content_export.h" | 18 #include "content/common/content_export.h" |
17 #include "content/public/browser/navigation_throttle.h" | 19 #include "content/public/browser/navigation_throttle.h" |
18 #include "url/gurl.h" | 20 #include "url/gurl.h" |
19 | 21 |
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 // Manages the lifetime of a pre-created ServiceWorkerProviderHost until a | 247 // Manages the lifetime of a pre-created ServiceWorkerProviderHost until a |
246 // corresponding ServiceWorkerNetworkProvider is created in the renderer. | 248 // corresponding ServiceWorkerNetworkProvider is created in the renderer. |
247 scoped_ptr<ServiceWorkerNavigationHandle> service_worker_handle_; | 249 scoped_ptr<ServiceWorkerNavigationHandle> service_worker_handle_; |
248 | 250 |
249 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); | 251 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); |
250 }; | 252 }; |
251 | 253 |
252 } // namespace content | 254 } // namespace content |
253 | 255 |
254 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 256 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
OLD | NEW |