Kristyn Hamasaki | 06170c05 | 2019-07-09 23:53:33 | [diff] [blame] | 1 | // 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 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(); |
Kristyn Hamasaki | 06170c05 | 2019-07-09 23:53:33 | [diff] [blame] | 15 | return protocol::Response::OK(); |
| 16 | } |
| 17 | |
| 18 | } // namespace ui_devtools |