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

Side by Side Diff: content/public/android/java/src/org/chromium/content/browser/NavigationClient.java

Issue 666673009: Removing NavigationClient dependencies from Tab. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed the review comments. Created 6 years, 1 month 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 | « chrome/android/javatests/src/org/chromium/chrome/browser/NavigationPopupTest.java ('k') | no next file » | 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 2013 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 package org.chromium.content.browser;
6
7 import org.chromium.content_public.browser.NavigationHistory;
8
9 /**
10 * Provides functionality needed to query and page history and the ability to ac cess
11 * items in the history.
12 */
13 public interface NavigationClient {
14
15 /**
16 * Get a directed copy of the navigation history of the view.
17 * @param isForward Whether the returned history should be entries after the current entry.
18 * @param itemLimit The limit on the number of items included in the history .
19 * @return A directed navigation for the page.
20 */
21 public NavigationHistory getDirectedNavigationHistory(boolean isForward, int itemLimit);
22
23 /**
24 * Navigates to the specified index in the navigation entry for this page.
25 * @param index The navigation index to navigate to.
26 */
27 public void goToNavigationIndex(int index);
28 }
OLDNEW
« no previous file with comments | « chrome/android/javatests/src/org/chromium/chrome/browser/NavigationPopupTest.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698