chromium/headless/lib/browser/protocol/browser_handler.h

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef HEADLESS_LIB_BROWSER_PROTOCOL_BROWSER_HANDLER_H_
#define HEADLESS_LIB_BROWSER_PROTOCOL_BROWSER_HANDLER_H_

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "headless/lib/browser/protocol/browser.h"
#include "headless/lib/browser/protocol/domain_handler.h"

namespace headless {
class HeadlessBrowserImpl;
namespace protocol {

class BrowserHandler : public DomainHandler, public Browser::Backend {};

}  // namespace protocol
}  // namespace headless

#endif  // HEADLESS_LIB_BROWSER_PROTOCOL_BROWSER_HANDLER_H_