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

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

Issue 141533006: [Android] Move the java content/ package to content_public/ to start the split. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small fixes and findbugs line update Created 6 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: content/public/android/java/src/org/chromium/content/browser/NavigationClient.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/NavigationClient.java b/content/public/android/java/src/org/chromium/content/browser/NavigationClient.java
deleted file mode 100644
index 2605851c5e61b05127599c70d6e56bcc18f88378..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content/browser/NavigationClient.java
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright 2013 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.
-
-package org.chromium.content.browser;
-
-/**
- * Provides functionality needed to query and page history and the ability to access
- * items in the history.
- */
-public interface NavigationClient {
-
- /**
- * Get a directed copy of the navigation history of the view.
- * @param isForward Whether the returned history should be entries after the current entry.
- * @param itemLimit The limit on the number of items included in the history.
- * @return A directed navigation for the page.
- */
- public NavigationHistory getDirectedNavigationHistory(boolean isForward, int itemLimit);
-
- /**
- * Navigates to the specified index in the navigation entry for this page.
- * @param index The navigation index to navigate to.
- */
- public void goToNavigationIndex(int index);
-}

Powered by Google App Engine
This is Rietveld 408576698