// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_DEVTOOLS_INTERACTION_TRACKER_H_ #define COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_DEVTOOLS_INTERACTION_TRACKER_H_ #include "content/public/browser/web_contents_user_data.h" namespace subresource_filter { // Can be used to track whether forced activation has been set by devtools // within a given WebContents. // Scoped to the lifetime of a WebContents. class DevtoolsInteractionTracker : public content::WebContentsUserData<DevtoolsInteractionTracker> { … }; } // namespace subresource_filter #endif // COMPONENTS_SUBRESOURCE_FILTER_CONTENT_BROWSER_DEVTOOLS_INTERACTION_TRACKER_H_