// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_SEARCH_NEW_TAB_PAGE_NAVIGATION_THROTTLE_H_ #define CHROME_BROWSER_UI_SEARCH_NEW_TAB_PAGE_NAVIGATION_THROTTLE_H_ #include <memory> #include "content/public/browser/navigation_throttle.h" namespace content { class NavigationHandle; } // namespace content // A NavigationThrottle that opens the local New Tab Page when there is any // issue opening the remote New Tab Page. class NewTabPageNavigationThrottle : public content::NavigationThrottle { … }; #endif // CHROME_BROWSER_UI_SEARCH_NEW_TAB_PAGE_NAVIGATION_THROTTLE_H_