blob: 69dab401cfcb536ad86ef5683a46fb0c2e8d26ca [file] [log] [blame]
Avi Drissman8ba1bad2022-09-13 19:22:361// Copyright 2019 The Chromium Authors
Kristyn Hamasaki06170c052019-07-09 23:53:332// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "components/ui_devtools/page_agent.h"
6
Kristyn Hamasaki06170c052019-07-09 23:53:337namespace ui_devtools {
8
9PageAgent::PageAgent(DOMAgent* dom_agent) : dom_agent_(dom_agent) {}
10
11PageAgent::~PageAgent() {}
12
Kristyn Hamasaki996222832019-07-23 20:09:2613protocol::Response PageAgent::reload(protocol::Maybe<bool> bypass_cache) {
14 NOTREACHED();
Johannes Henkeld5fead72020-03-20 02:09:0115 return protocol::Response::Success();
Kristyn Hamasaki06170c052019-07-09 23:53:3316}
17
18} // namespace ui_devtools