22 lines
702 B
C
22 lines
702 B
C
|
// Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights
|
||
|
// reserved. Use of this source code is governed by a BSD-style license that
|
||
|
// can be found in the LICENSE file.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CEF/ClientHandler.h"
|
||
|
|
||
|
// Client handler implementation for windowed browsers. There will only ever be
|
||
|
// one browser per handler instance.
|
||
|
class ClientHandlerStd : public ClientHandler {
|
||
|
public:
|
||
|
ClientHandlerStd(Delegate* delegate,
|
||
|
bool with_controls,
|
||
|
const std::string& startup_url);
|
||
|
|
||
|
private:
|
||
|
// Include the default reference counting implementation.
|
||
|
IMPLEMENT_REFCOUNTING(ClientHandlerStd);
|
||
|
DISALLOW_COPY_AND_ASSIGN(ClientHandlerStd);
|
||
|
};
|