1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16

android_webview / common / mojom / renderer.mojom [blame]

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module android_webview.mojom;

// Similar to content.mojom.Renderer. This interface adds additional
// things that webview needs from the renderer process.
interface Renderer {
  // Clear the memory cache. The cache is process wide so this will influence
  // other webview instances as well.
  ClearCache();

  // Adjusts the javascript 'online' property value.
  SetJsOnlineProperty(bool network_up);
};