test_devtools_list_fetcher.h 577 B

1234567891011121314
  1. // Copyright 2019 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. #ifndef FUCHSIA_WEB_COMMON_TEST_TEST_DEVTOOLS_LIST_FETCHER_H_
  5. #define FUCHSIA_WEB_COMMON_TEST_TEST_DEVTOOLS_LIST_FETCHER_H_
  6. #include "base/values.h"
  7. // Returns the JSON value of the list URL for the DevTools service listening
  8. // on port |port| on localhost. Returns an empty value on error.
  9. base::Value GetDevToolsListFromPort(uint16_t port);
  10. #endif // FUCHSIA_WEB_COMMON_TEST_TEST_DEVTOOLS_LIST_FETCHER_H_