renderer.mojom 572 B

12345678910111213141516
  1. // Copyright 2020 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. module android_webview.mojom;
  5. // Similar to content.mojom.Renderer. This interface adds additional
  6. // things that webview needs from the renderer process.
  7. interface Renderer {
  8. // Clear the memory cache. The cache is process wide so this will influence
  9. // other webview instances as well.
  10. ClearCache();
  11. // Adjusts the javascript 'online' property value.
  12. SetJsOnlineProperty(bool network_up);
  13. };