2022-10-17 11:10:07 -04:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
|
|
|
#include "shell/browser/ui/inspectable_web_contents_view.h"
|
|
|
|
|
|
|
|
namespace electron {
|
|
|
|
|
|
|
|
InspectableWebContentsView::InspectableWebContentsView(
|
|
|
|
InspectableWebContents* inspectable_web_contents)
|
2024-07-27 09:44:22 -07:00
|
|
|
: inspectable_web_contents_(inspectable_web_contents) {}
|
2022-10-17 11:10:07 -04:00
|
|
|
|
2024-07-27 09:44:22 -07:00
|
|
|
InspectableWebContentsView::~InspectableWebContentsView() = default;
|
2022-10-17 11:10:07 -04:00
|
|
|
|
|
|
|
} // namespace electron
|