blob: e371211a3fc99f38a76fbaf7b2d7490ed02f0a0e [file] [log] [blame]
Kristyn Hamasaki06170c052019-07-09 23:53:331// Copyright 2019 The Chromium Authors. All rights reserved.
2// 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();
Kristyn Hamasaki06170c052019-07-09 23:53:3315 return protocol::Response::OK();
16}
17
18} // namespace ui_devtools