Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1094)

Side by Side Diff: ios/web/test/fakes/test_navigation_manager_delegate.h

Issue 2942103002: Fix failing NavigationManagerUtil test that wasn't being run. (Closed)
Patch Set: rebase Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/web/test/fakes/BUILD.gn ('k') | ios/web/test/fakes/test_navigation_manager_delegate.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef IOS_WEB_TEST_FAKES_TEST_NAVIGATION_MANAGER_DELEGATE_H_
6 #define IOS_WEB_TEST_FAKES_TEST_NAVIGATION_MANAGER_DELEGATE_H_
7
8 #import "ios/web/navigation/navigation_manager_delegate.h"
9
10 namespace web {
11
12 class TestNavigationManagerDelegate : public NavigationManagerDelegate {
13 public:
14 void GoToIndex(int index) override;
15 void LoadURLWithParams(const NavigationManager::WebLoadParams&) override;
16 void Reload() override;
17 void OnNavigationItemsPruned(size_t pruned_item_count) override;
18 void OnNavigationItemChanged() override;
19 void OnNavigationItemCommitted(
20 const LoadCommittedDetails& load_details) override;
21 WebState* GetWebState() override;
22 };
23
24 } // namespace web
25
26 #endif // IOS_WEB_TEST_FAKES_TEST_NAVIGATION_MANAGER_DELEGATE_H_
OLDNEW
« no previous file with comments | « ios/web/test/fakes/BUILD.gn ('k') | ios/web/test/fakes/test_navigation_manager_delegate.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698