• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2015 The Chromium Embedded Framework Authors. All rights
2 // reserved. Use of this source code is governed by a BSD-style license that
3 // can be found in the LICENSE file.
4 
5 #ifndef CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_HANDLER_STD_H_
6 #define CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_HANDLER_STD_H_
7 #pragma once
8 
9 #include "tests/cefclient/browser/client_handler.h"
10 
11 namespace client {
12 
13 // Client handler implementation for windowed browsers. There will only ever be
14 // one browser per handler instance.
15 class ClientHandlerStd : public ClientHandler {
16  public:
17   ClientHandlerStd(Delegate* delegate, const std::string& startup_url);
18 
19  private:
20   // Include the default reference counting implementation.
21   IMPLEMENT_REFCOUNTING(ClientHandlerStd);
22   DISALLOW_COPY_AND_ASSIGN(ClientHandlerStd);
23 };
24 
25 }  // namespace client
26 
27 #endif  // CEF_TESTS_CEFCLIENT_BROWSER_CLIENT_HANDLER_STD_H_
28