2019-01-21 22:26:54 +05:30
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 13:46:59 -07:00
|
|
|
#include "shell/browser/child_web_contents_tracker.h"
|
2019-01-21 22:26:54 +05:30
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
namespace electron {
|
2019-01-21 22:26:54 +05:30
|
|
|
|
|
|
|
ChildWebContentsTracker::ChildWebContentsTracker(
|
|
|
|
content::WebContents* web_contents) {}
|
|
|
|
|
2021-06-03 21:16:13 -07:00
|
|
|
ChildWebContentsTracker::~ChildWebContentsTracker() = default;
|
2020-03-26 19:05:45 +01:00
|
|
|
|
2021-10-21 11:51:36 -07:00
|
|
|
WEB_CONTENTS_USER_DATA_KEY_IMPL(ChildWebContentsTracker);
|
2019-01-21 22:26:54 +05:30
|
|
|
|
2019-06-19 14:23:04 -07:00
|
|
|
} // namespace electron
|