summaryrefslogtreecommitdiff
path: root/chromium/weblayer/browser/java/org/chromium/weblayer_private/interfaces/INavigation.aidl
blob: bc05deb67940acf93321a8171da312fbe8dfddc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.weblayer_private.interfaces;

/**
 * Provides information about a navigation.
 */
interface INavigation {
  int getState() = 0;

  String getUri() = 1;

  List<String> getRedirectChain() = 2;

  int getHttpStatusCode() = 3;

  boolean isSameDocument() = 4;

  boolean isErrorPage() = 5;

  int getLoadError() = 6;

  void setRequestHeader(in String name, in String value) = 7;

  void setUserAgentString(in String value) = 8;

  boolean isDownload() = 9;

  boolean wasStopCalled() = 10;

  // @since 86
  boolean isPageInitiated() = 11;
  boolean isReload() = 12;

  // @since 88
  void disableNetworkErrorAutoReload() = 17;
}