0
Files
src/content/browser/network_service_instance_impl.h
Clark DuVall aa68215f41 Remove DumpWithoutCrashing used for debugging NS OOP on Android
We should have enough data from this already, so no need to keep it
around.

Bug: 934317, 1033917
Change-Id: Ib3102b7382e47a5e2f4640090c8bfef69d27d6b5
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1976823
Commit-Queue: John Abd-El-Malek <jam@chromium.org>
Reviewed-by: John Abd-El-Malek <jam@chromium.org>
Auto-Submit: Clark DuVall <cduvall@chromium.org>
Cr-Commit-Position: refs/heads/master@{#727215}
2019-12-23 19:46:27 +00:00

67 lines
2.4 KiB
C++

// 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.
#ifndef CONTENT_BROWSER_NETWORK_SERVICE_INSTANCE_IMPL_H_
#define CONTENT_BROWSER_NETWORK_SERVICE_INSTANCE_IMPL_H_
#include "base/callback.h"
#include "base/callback_list.h"
#include "content/common/content_export.h"
namespace content {
// Creates the network::NetworkService object on the IO thread directly instead
// of trying to go through the ServiceManager.
CONTENT_EXPORT void ForceCreateNetworkServiceDirectlyForTesting();
// Resets the interface ptr to the network service.
CONTENT_EXPORT void ResetNetworkServiceForTesting();
// Registers |handler| to run (on UI thread) after mojo::Remote<NetworkService>
// encounters an error. Note that there are no ordering guarantees wrt error
// handlers for other interfaces (e.g. mojo::Remote<NetworkContext> and/or
// mojo::Remote<URLLoaderFactory>).
//
// Can only be called on the UI thread. No-op if NetworkService is disabled.
CONTENT_EXPORT std::unique_ptr<base::CallbackList<void()>::Subscription>
RegisterNetworkServiceCrashHandler(base::RepeatingClosure handler);
// Corresponds to the "NetworkServiceAvailability" histogram enumeration type in
// src/tools/metrics/histograms/enums.xml.
//
// DO NOT REORDER OR CHANGE THE MEANING OF THESE VALUES.
enum class NetworkServiceAvailability {
AVAILABLE = 0,
NOT_CREATED = 1,
NOT_BOUND = 2,
ENCOUNTERED_ERROR = 3,
NOT_RESPONDING = 4,
kMaxValue = NOT_RESPONDING
};
constexpr char kSSLKeyLogFileHistogram[] = "Net.SSLKeyLogFileUse";
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum class SSLKeyLogFileAction {
kLogFileEnabled = 0,
kSwitchFound = 1,
kEnvVarFound = 2,
kMaxValue = kEnvVarFound,
};
// TODO(http://crbug.com/934317): Remove these when done debugging renderer
// hangs.
CONTENT_EXPORT NetworkServiceAvailability GetNetworkServiceAvailability();
CONTENT_EXPORT base::TimeDelta GetTimeSinceLastNetworkServiceCrash();
CONTENT_EXPORT void PingNetworkService(base::OnceClosure closure);
// Shuts down the in-process network service or disconnects from the out-of-
// process one, allowing it to shut down.
CONTENT_EXPORT void ShutDownNetworkService();
} // namespace content
#endif // CONTENT_BROWSER_NETWORK_SERVICE_INSTANCE_IMPL_H_