| Index: content/public/browser/navigation_throttle.cc
|
| diff --git a/content/public/browser/navigation_throttle.cc b/content/public/browser/navigation_throttle.cc
|
| deleted file mode 100644
|
| index ac3b3aa405654418ac2e76e63b2380bc4ed16164..0000000000000000000000000000000000000000
|
| --- a/content/public/browser/navigation_throttle.cc
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#include "content/public/browser/navigation_throttle.h"
|
| -
|
| -namespace content {
|
| -
|
| -NavigationThrottle::NavigationThrottle(NavigationHandle* navigation_handle)
|
| - : navigation_handle_(navigation_handle) {}
|
| -
|
| -NavigationThrottle::~NavigationThrottle() {}
|
| -
|
| -NavigationThrottle::ThrottleCheckResult NavigationThrottle::WillStartRequest() {
|
| - return NavigationThrottle::PROCEED;
|
| -}
|
| -
|
| -NavigationThrottle::ThrottleCheckResult
|
| -NavigationThrottle::WillRedirectRequest() {
|
| - return NavigationThrottle::PROCEED;
|
| -}
|
| -
|
| -} // namespace content
|
|
|