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

Side by Side Diff: chrome/android/java_staging/src/org/chromium/chrome/browser/toolbar/ToolbarTabController.java

Issue 1141283003: Upstream oodles of Chrome for Android code into Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: final patch? Created 5 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2015 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.chrome.browser.toolbar;
6
7 /**
8 * Handles toolbar triggered actions on the specific tab.
9 */
10 public interface ToolbarTabController {
11 /**
12 * If the page is currently loading, this will trigger the tab to stop. If the page is fully
13 * loaded, this will trigger a refresh.
14 *
15 * <p>The buttons of the toolbar will be updated as a result of making this call.
16 */
17 void stopOrReloadCurrentTab();
18
19 /**
20 * Navigates the current Tab back.
21 * @return Whether or not the current Tab did go back.
22 */
23 boolean back();
24
25 /**
26 * Navigates the current Tab forward.
27 * @return Whether or not the current Tab did go forward.
28 */
29 boolean forward();
30
31 /**
32 * Opens hompage in the current tab.
33 */
34 void openHomepage();
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698