// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_TIME_TRACKER_H_ #define EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_TIME_TRACKER_H_ #include <stdint.h> #include <map> #include "base/gtest_prod_util.h" #include "base/time/time.h" // This class monitors how much delay extensions add to network requests // by using the webRequest API. class ExtensionWebRequestTimeTracker { … }; #endif // EXTENSIONS_BROWSER_API_WEB_REQUEST_WEB_REQUEST_TIME_TRACKER_H_