b06fb163d2a66ba29546daba1b90cc3efe8345e2
[platform/framework/web/crosswalk.git] / src / xwalk / runtime / android / java / 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 }