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

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

Issue 369503003: Migration of code from ContentViewCore to NavigationController to avoid ContentViewCore abstraction… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed style issues in functions Created 6 years, 5 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 | « content/public/android/java/src/org/chromium/content/browser/framehost/NavigationControllerImpl.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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package org.chromium.content_public.browser; 5 package org.chromium.content_public.browser;
6 6
7 /** 7 /**
8 * The NavigationController Java wrapper to allow communicating with the native 8 * The NavigationController Java wrapper to allow communicating with the native
9 * NavigationController object. 9 * NavigationController object.
10 */ 10 */
(...skipping 29 matching lines...) Expand all
40 40
41 /** 41 /**
42 * Goes to the navigation entry before the current one. 42 * Goes to the navigation entry before the current one.
43 */ 43 */
44 void goBack(); 44 void goBack();
45 45
46 /** 46 /**
47 * Goes to the navigation entry following the current one. 47 * Goes to the navigation entry following the current one.
48 */ 48 */
49 void goForward(); 49 void goForward();
50
51 /**
52 * Loads the current navigation if there is a pending lazy load (after tab r estore).
53 */
54 public void loadIfNecessary();
55
56 /**
57 * Requests the current navigation to be loaded upon the next call to loadIf Necessary().
58 */
59 public void requestRestoreLoad();
60
61 /**
62 * Reload the current page.
63 */
64 public void reload(boolean checkForRepost);
65
66 /**
67 * Reload the current page, ignoring the contents of the cache.
68 */
69 public void reloadIgnoringCache(boolean checkForRepost);
70
71 /**
72 * Cancel the pending reload.
73 */
74 public void cancelPendingReload();
75
76 /**
77 * Continue the pending reload.
78 */
79 public void continuePendingReload();
50 } 80 }
OLDNEW
« no previous file with comments | « content/public/android/java/src/org/chromium/content/browser/framehost/NavigationControllerImpl.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698