// 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 CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FINDER_H_ #define CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FINDER_H_ #include <vector> #include "base/memory/raw_ptr.h" #include "chrome/common/extensions/api/developer_private.h" class Profile; class GURL; namespace extensions { class Extension; class ProcessManager; namespace api { namespace developer_private { struct ExtensionView; } } // Finds inspectable views for the extensions, and returns them as represented // by the developerPrivate API structure and schema compiler. class InspectableViewsFinder { … }; } // namespace extensions #endif // CHROME_BROWSER_EXTENSIONS_API_DEVELOPER_PRIVATE_INSPECTABLE_VIEWS_FINDER_H_