| 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 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 #include "content/browser/frame_host/navigation_controller_impl.h" | 36 #include "content/browser/frame_host/navigation_controller_impl.h" |
| 37 | 37 |
| 38 #include <utility> | 38 #include <utility> |
| 39 | 39 |
| 40 #include "base/bind.h" | 40 #include "base/bind.h" |
| 41 #include "base/command_line.h" | 41 #include "base/command_line.h" |
| 42 #include "base/debug/dump_without_crashing.h" | 42 #include "base/debug/dump_without_crashing.h" |
| 43 #include "base/logging.h" | 43 #include "base/logging.h" |
| 44 #include "base/memory/ptr_util.h" | 44 #include "base/memory/ptr_util.h" |
| 45 #include "base/metrics/histogram.h" | 45 #include "base/metrics/histogram_macros.h" |
| 46 #include "base/strings/string_number_conversions.h" // Temporary | 46 #include "base/strings/string_number_conversions.h" // Temporary |
| 47 #include "base/strings/string_util.h" | 47 #include "base/strings/string_util.h" |
| 48 #include "base/strings/utf_string_conversions.h" | 48 #include "base/strings/utf_string_conversions.h" |
| 49 #include "base/time/time.h" | 49 #include "base/time/time.h" |
| 50 #include "base/trace_event/trace_event.h" | 50 #include "base/trace_event/trace_event.h" |
| 51 #include "build/build_config.h" | 51 #include "build/build_config.h" |
| 52 #include "cc/base/switches.h" | 52 #include "cc/base/switches.h" |
| 53 #include "components/mime_util/mime_util.h" | 53 #include "components/mime_util/mime_util.h" |
| 54 #include "content/browser/bad_message.h" | 54 #include "content/browser/bad_message.h" |
| 55 #include "content/browser/browser_url_handler_impl.h" | 55 #include "content/browser/browser_url_handler_impl.h" |
| (...skipping 2052 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2108 } | 2108 } |
| 2109 } | 2109 } |
| 2110 } | 2110 } |
| 2111 | 2111 |
| 2112 void NavigationControllerImpl::SetGetTimestampCallbackForTest( | 2112 void NavigationControllerImpl::SetGetTimestampCallbackForTest( |
| 2113 const base::Callback<base::Time()>& get_timestamp_callback) { | 2113 const base::Callback<base::Time()>& get_timestamp_callback) { |
| 2114 get_timestamp_callback_ = get_timestamp_callback; | 2114 get_timestamp_callback_ = get_timestamp_callback; |
| 2115 } | 2115 } |
| 2116 | 2116 |
| 2117 } // namespace content | 2117 } // namespace content |
| OLD | NEW |