blob: 69dab401cfcb536ad86ef5683a46fb0c2e8d26ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/ui_devtools/page_agent.h"
namespace ui_devtools {
PageAgent::PageAgent(DOMAgent* dom_agent) : dom_agent_(dom_agent) {}
PageAgent::~PageAgent() {}
protocol::Response PageAgent::reload(protocol::Maybe<bool> bypass_cache) {
NOTREACHED();
return protocol::Response::Success();
}
} // namespace ui_devtools
|