summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/execution_context/window_agent.cc
blob: ffc29f72255a1fa2f9dba5b9c458a4074e4bad85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "third_party/blink/renderer/core/execution_context/window_agent.h"


namespace blink {

WindowAgent::WindowAgent(v8::Isolate* isolate)
    : Agent(isolate, base::UnguessableToken::Create()) {}

WindowAgent::~WindowAgent() = default;

void WindowAgent::Trace(Visitor* visitor) {
  Agent::Trace(visitor);
}

}  // namespace blink