chore: enable check raw ptr fields (#38167)

This commit is contained in:
John Kleinschmidt 2023-05-11 16:07:39 -04:00 committed by GitHub
parent 141175c723
commit 3dbc0a365f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
120 changed files with 298 additions and 185 deletions

View file

@ -7,6 +7,7 @@
#include <map>
#include "base/memory/raw_ptr.h"
#include "content/public/browser/browser_plugin_guest_manager.h"
namespace electron {
@ -33,8 +34,8 @@ class WebViewManager : public content::BrowserPluginGuestManager {
private:
struct WebContentsWithEmbedder {
content::WebContents* web_contents;
content::WebContents* embedder;
raw_ptr<content::WebContents> web_contents;
raw_ptr<content::WebContents> embedder;
};
// guest_instance_id => (web_contents, embedder)
std::map<int, WebContentsWithEmbedder> web_contents_embedder_map_;