| 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_RENDER_FRAME_HOST_MANAGER_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/logging.h" | 11 #include "base/logging.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "content/browser/renderer_host/render_view_host_delegate.h" | 14 #include "content/browser/renderer_host/render_view_host_delegate.h" |
| 15 #include "content/browser/site_instance_impl.h" | 15 #include "content/browser/site_instance_impl.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 #include "content/public/browser/global_request_id.h" | 17 #include "content/public/browser/global_request_id.h" |
| 18 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 20 #include "content/public/common/referrer.h" | 20 #include "content/public/common/referrer.h" |
| 21 #include "ui/base/page_transition_types.h" | 21 #include "ui/base/page_transition_types.h" |
| 22 | 22 |
| 23 struct FrameMsg_Navigate_Params; | |
| 24 | |
| 25 namespace content { | 23 namespace content { |
| 26 class BrowserContext; | 24 class BrowserContext; |
| 27 class CrossProcessFrameConnector; | 25 class CrossProcessFrameConnector; |
| 28 class CrossSiteTransferringRequest; | 26 class CrossSiteTransferringRequest; |
| 29 class FrameTreeNode; | 27 class FrameTreeNode; |
| 30 class InterstitialPageImpl; | 28 class InterstitialPageImpl; |
| 31 class NavigationControllerImpl; | 29 class NavigationControllerImpl; |
| 32 class NavigationEntry; | 30 class NavigationEntry; |
| 33 class NavigationEntryImpl; | 31 class NavigationEntryImpl; |
| 34 class NavigationRequest; | 32 class NavigationRequest; |
| (...skipping 670 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 bool should_reuse_web_ui_; | 703 bool should_reuse_web_ui_; |
| 706 | 704 |
| 707 base::WeakPtrFactory<RenderFrameHostManager> weak_factory_; | 705 base::WeakPtrFactory<RenderFrameHostManager> weak_factory_; |
| 708 | 706 |
| 709 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostManager); | 707 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostManager); |
| 710 }; | 708 }; |
| 711 | 709 |
| 712 } // namespace content | 710 } // namespace content |
| 713 | 711 |
| 714 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ | 712 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_MANAGER_H_ |
| OLD | NEW |