| // 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. | |
| module weblayer_internals.mojom; | |
| // Browser interface. | |
| interface PageHandler { | |
| // Gets whether remote debugging is currently enabled. | |
| [EnableIf=is_android] | |
| GetRemoteDebuggingEnabled() => (bool enabled); | |
| // Enables or disables remote debugging. | |
| [EnableIf=is_android] | |
| SetRemoteDebuggingEnabled(bool enabled); | |
| }; |