| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "content/browser/frame_host/navigator_delegate.h" | 5 #include "content/browser/frame_host/navigator_delegate.h" |
| 6 | 6 |
| 7 #include "base/strings/string_util.h" |
| 8 |
| 7 namespace content { | 9 namespace content { |
| 8 | 10 |
| 9 bool NavigatorDelegate::CanOverscrollContent() const { | 11 bool NavigatorDelegate::CanOverscrollContent() const { |
| 10 return false; | 12 return false; |
| 11 } | 13 } |
| 12 | 14 |
| 13 bool NavigatorDelegate::ShouldTransferNavigation( | 15 bool NavigatorDelegate::ShouldTransferNavigation( |
| 14 bool is_main_frame_navigation) { | 16 bool is_main_frame_navigation) { |
| 15 return true; | 17 return true; |
| 16 } | 18 } |
| 17 | 19 |
| 18 bool NavigatorDelegate::ShouldPreserveAbortedURLs() { | 20 bool NavigatorDelegate::ShouldPreserveAbortedURLs() { |
| 19 return false; | 21 return false; |
| 20 } | 22 } |
| 21 | 23 |
| 24 const std::string& NavigatorDelegate::GetNavigationUserAgentOverride() { |
| 25 return base::EmptyString(); |
| 26 } |
| 27 |
| 22 std::vector<std::unique_ptr<NavigationThrottle>> | 28 std::vector<std::unique_ptr<NavigationThrottle>> |
| 23 NavigatorDelegate::CreateThrottlesForNavigation( | 29 NavigatorDelegate::CreateThrottlesForNavigation( |
| 24 NavigationHandle* navigation_handle) { | 30 NavigationHandle* navigation_handle) { |
| 25 return std::vector<std::unique_ptr<NavigationThrottle>>(); | 31 return std::vector<std::unique_ptr<NavigationThrottle>>(); |
| 26 } | 32 } |
| 27 | 33 |
| 28 std::unique_ptr<NavigationUIData> NavigatorDelegate::GetNavigationUIData( | 34 std::unique_ptr<NavigationUIData> NavigatorDelegate::GetNavigationUIData( |
| 29 NavigationHandle* navigation_handle) { | 35 NavigationHandle* navigation_handle) { |
| 30 return nullptr; | 36 return nullptr; |
| 31 } | 37 } |
| 32 | 38 |
| 33 } // namespace content | 39 } // namespace content |
| OLD | NEW |