| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 #include "content/common/view_messages.h" | 67 #include "content/common/view_messages.h" |
| 68 #include "content/public/browser/browser_context.h" | 68 #include "content/public/browser/browser_context.h" |
| 69 #include "content/public/browser/content_browser_client.h" | 69 #include "content/public/browser/content_browser_client.h" |
| 70 #include "content/public/browser/invalidate_type.h" | 70 #include "content/public/browser/invalidate_type.h" |
| 71 #include "content/public/browser/navigation_details.h" | 71 #include "content/public/browser/navigation_details.h" |
| 72 #include "content/public/browser/notification_service.h" | 72 #include "content/public/browser/notification_service.h" |
| 73 #include "content/public/browser/notification_types.h" | 73 #include "content/public/browser/notification_types.h" |
| 74 #include "content/public/browser/render_widget_host.h" | 74 #include "content/public/browser/render_widget_host.h" |
| 75 #include "content/public/browser/render_widget_host_view.h" | 75 #include "content/public/browser/render_widget_host_view.h" |
| 76 #include "content/public/browser/storage_partition.h" | 76 #include "content/public/browser/storage_partition.h" |
| 77 #include "content/public/browser/user_metrics.h" | |
| 78 #include "content/public/common/content_client.h" | 77 #include "content/public/common/content_client.h" |
| 79 #include "content/public/common/content_constants.h" | 78 #include "content/public/common/content_constants.h" |
| 80 #include "content/public/common/content_features.h" | 79 #include "content/public/common/content_features.h" |
| 81 #include "media/base/mime_util.h" | 80 #include "media/base/mime_util.h" |
| 82 #include "net/base/escape.h" | 81 #include "net/base/escape.h" |
| 83 #include "skia/ext/platform_canvas.h" | 82 #include "skia/ext/platform_canvas.h" |
| 84 #include "url/url_constants.h" | 83 #include "url/url_constants.h" |
| 85 | 84 |
| 86 namespace content { | 85 namespace content { |
| 87 namespace { | 86 namespace { |
| (...skipping 2068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2156 } | 2155 } |
| 2157 } | 2156 } |
| 2158 } | 2157 } |
| 2159 | 2158 |
| 2160 void NavigationControllerImpl::SetGetTimestampCallbackForTest( | 2159 void NavigationControllerImpl::SetGetTimestampCallbackForTest( |
| 2161 const base::Callback<base::Time()>& get_timestamp_callback) { | 2160 const base::Callback<base::Time()>& get_timestamp_callback) { |
| 2162 get_timestamp_callback_ = get_timestamp_callback; | 2161 get_timestamp_callback_ = get_timestamp_callback; |
| 2163 } | 2162 } |
| 2164 | 2163 |
| 2165 } // namespace content | 2164 } // namespace content |
| OLD | NEW |