Chromium Code Reviews| Index: content/public/browser/stream_info.cc |
| diff --git a/content/browser/frame_host/navigator_delegate.cc b/content/public/browser/stream_info.cc |
| similarity index 50% |
| copy from content/browser/frame_host/navigator_delegate.cc |
| copy to content/public/browser/stream_info.cc |
| index 4389c81e2fbcbc881af96f4611db6120394b074b..aa8945442b0174b57a7f2c797a8345a16e293726 100644 |
| --- a/content/browser/frame_host/navigator_delegate.cc |
| +++ b/content/public/browser/stream_info.cc |
| @@ -2,16 +2,15 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "content/browser/frame_host/navigator_delegate.h" |
| +#include "content/public/browser/stream_info.h" |
|
Zachary Kuznia
2014/09/12 21:14:19
Try to dial down the copy detection on git cl uplo
davidben
2014/09/19 18:30:50
Done. (Although it's not going to make a differenc
|
| + |
| +#include "content/public/browser/stream_handle.h" |
| +#include "content/public/common/resource_response.h" |
| namespace content { |
| -bool NavigatorDelegate::CanOverscrollContent() const { |
| - return false; |
| -} |
| +StreamInfo::StreamInfo() {} |
| -bool NavigatorDelegate::ShouldPreserveAbortedURLs() { |
| - return false; |
| -} |
| +StreamInfo::~StreamInfo() {} |
| } // namespace content |