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 /* | 5 /* |
6 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 6 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 7 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * | 10 * |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 #include "content/browser/frame_host/debug_urls.h" | 58 #include "content/browser/frame_host/debug_urls.h" |
59 #include "content/browser/frame_host/interstitial_page_impl.h" | 59 #include "content/browser/frame_host/interstitial_page_impl.h" |
60 #include "content/browser/frame_host/navigation_entry_impl.h" | 60 #include "content/browser/frame_host/navigation_entry_impl.h" |
61 #include "content/browser/frame_host/navigation_entry_screenshot_manager.h" | 61 #include "content/browser/frame_host/navigation_entry_screenshot_manager.h" |
62 #include "content/browser/frame_host/navigation_handle_impl.h" | 62 #include "content/browser/frame_host/navigation_handle_impl.h" |
63 #include "content/browser/frame_host/navigator.h" | 63 #include "content/browser/frame_host/navigator.h" |
64 #include "content/browser/renderer_host/render_view_host_impl.h" // Temporary | 64 #include "content/browser/renderer_host/render_view_host_impl.h" // Temporary |
65 #include "content/browser/site_instance_impl.h" | 65 #include "content/browser/site_instance_impl.h" |
66 #include "content/common/frame_messages.h" | 66 #include "content/common/frame_messages.h" |
67 #include "content/common/site_isolation_policy.h" | 67 #include "content/common/site_isolation_policy.h" |
68 #include "content/common/ssl_status_serialization.h" | |
69 #include "content/common/view_messages.h" | 68 #include "content/common/view_messages.h" |
70 #include "content/public/browser/browser_context.h" | 69 #include "content/public/browser/browser_context.h" |
71 #include "content/public/browser/content_browser_client.h" | 70 #include "content/public/browser/content_browser_client.h" |
72 #include "content/public/browser/invalidate_type.h" | 71 #include "content/public/browser/invalidate_type.h" |
73 #include "content/public/browser/navigation_details.h" | 72 #include "content/public/browser/navigation_details.h" |
74 #include "content/public/browser/notification_service.h" | 73 #include "content/public/browser/notification_service.h" |
75 #include "content/public/browser/notification_types.h" | 74 #include "content/public/browser/notification_types.h" |
76 #include "content/public/browser/render_widget_host.h" | 75 #include "content/public/browser/render_widget_host.h" |
77 #include "content/public/browser/render_widget_host_view.h" | 76 #include "content/public/browser/render_widget_host_view.h" |
78 #include "content/public/browser/storage_partition.h" | 77 #include "content/public/browser/storage_partition.h" |
(...skipping 2032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2111 } | 2110 } |
2112 } | 2111 } |
2113 } | 2112 } |
2114 | 2113 |
2115 void NavigationControllerImpl::SetGetTimestampCallbackForTest( | 2114 void NavigationControllerImpl::SetGetTimestampCallbackForTest( |
2116 const base::Callback<base::Time()>& get_timestamp_callback) { | 2115 const base::Callback<base::Time()>& get_timestamp_callback) { |
2117 get_timestamp_callback_ = get_timestamp_callback; | 2116 get_timestamp_callback_ = get_timestamp_callback; |
2118 } | 2117 } |
2119 | 2118 |
2120 } // namespace content | 2119 } // namespace content |
OLD | NEW |