Avi Drissman | 8ba1bad | 2022-09-13 19:22:36 | [diff] [blame^] | 1 | // Copyright 2019 The Chromium Authors |
Kristyn Hamasaki | 06170c05 | 2019-07-09 23:53:33 | [diff] [blame] | 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 Hamasaki | 06170c05 | 2019-07-09 23:53:33 | [diff] [blame] | 7 | namespace ui_devtools { |
| 8 | |
| 9 | PageAgent::PageAgent(DOMAgent* dom_agent) : dom_agent_(dom_agent) {} |
| 10 | |
| 11 | PageAgent::~PageAgent() {} |
| 12 | |
Kristyn Hamasaki | 99622283 | 2019-07-23 20:09:26 | [diff] [blame] | 13 | protocol::Response PageAgent::reload(protocol::Maybe<bool> bypass_cache) { |
| 14 | NOTREACHED(); |
Johannes Henkel | d5fead7 | 2020-03-20 02:09:01 | [diff] [blame] | 15 | return protocol::Response::Success(); |
Kristyn Hamasaki | 06170c05 | 2019-07-09 23:53:33 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | } // namespace ui_devtools |