WebContents.java revision 5d1f7b1de12d16ceb2c938c56701a3e8bfa558f7
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
3// found in the LICENSE file.
4
5package org.chromium.content_public.browser;
6
7/**
8 * The WebContents Java wrapper to allow communicating with the native WebContents object.
9 */
10public interface WebContents {
11    /**
12     * @return The navigation controller associated with this WebContents.
13     */
14    NavigationController getNavigationController();
15}
16