Upstream version 5.34.92.0
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / core / src / org / xwalk / core / XWalkNavigationHandler.java
1 // Copyright (c) 2013 Intel Corporation. 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.xwalk.core;
6
7 import org.chromium.components.navigation_interception.NavigationParams;
8
9 public interface XWalkNavigationHandler {
10
11     /**
12      * Handles the navigation request.
13      * @param params The navigation parameters.
14      * @return true if the navigation request is handled.
15      */
16     boolean handleNavigation(NavigationParams params);
17 }