mirror of
https://github.com/electron/electron.git
synced 2026-01-08 23:18:06 -05:00
* chore: bump chromium in DEPS to 143.0.7474.0 * 7006208: [Mac] Fix rendering bug for manual occlusion detection on macOS 26 Refs https://chromium-review.googlesource.com/c/chromium/src/+/7006208 * chore: update patches * 7038563: Forward declare more in page_navigator.h Refs https://chromium-review.googlesource.com/c/chromium/src/+/7038563 * 7023417: Remove ipc/ipc_message_macros.h Refs https://chromium-review.googlesource.com/c/chromium/src/+/7023417 * 7006340: Move icon_util files to win/ subdrectory Refs https://chromium-review.googlesource.com/c/chromium/src/+/7006340 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
24 lines
758 B
C++
24 lines
758 B
C++
// Copyright (c) 2019 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/child_web_contents_tracker.h"
|
|
|
|
#include "base/memory/scoped_refptr.h"
|
|
#include "content/public/browser/web_contents_user_data.h"
|
|
#include "content/public/common/referrer.h"
|
|
#include "services/network/public/cpp/resource_request_body.h"
|
|
#include "url/gurl.h"
|
|
|
|
namespace electron {
|
|
|
|
ChildWebContentsTracker::ChildWebContentsTracker(
|
|
content::WebContents* web_contents)
|
|
: content::WebContentsUserData<ChildWebContentsTracker>(*web_contents) {}
|
|
|
|
ChildWebContentsTracker::~ChildWebContentsTracker() = default;
|
|
|
|
WEB_CONTENTS_USER_DATA_KEY_IMPL(ChildWebContentsTracker);
|
|
|
|
} // namespace electron
|