// Copyright 2015 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_GETTER_OBSERVER_H_ #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_GETTER_OBSERVER_H_ #include "net/base/net_export.h" namespace net { class URLRequestContextGetter; // Interface for watching when a URLRequestContext associated with a // URLRequestContextGetter is shutting down. class NET_EXPORT URLRequestContextGetterObserver { … }; } // namespace net #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_GETTER_OBSERVER_H_