page_agent.cc 499 B

123456789101112131415161718
  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. #include "components/ui_devtools/page_agent.h"
  5. namespace ui_devtools {
  6. PageAgent::PageAgent(DOMAgent* dom_agent) : dom_agent_(dom_agent) {}
  7. PageAgent::~PageAgent() {}
  8. protocol::Response PageAgent::reload(protocol::Maybe<bool> bypass_cache) {
  9. NOTREACHED();
  10. return protocol::Response::Success();
  11. }
  12. } // namespace ui_devtools