mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
cefclient: Split ClientApp into process-specific types (issue #1500).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@2015 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
25
tests/cefclient/common/client_app_other.h
Normal file
25
tests/cefclient/common/client_app_other.h
Normal file
@@ -0,0 +1,25 @@
|
||||
// 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.
|
||||
|
||||
#ifndef CEF_TESTS_CEFCLIENT_COMMON_CLIENT_APP_OTHER_H_
|
||||
#define CEF_TESTS_CEFCLIENT_COMMON_CLIENT_APP_OTHER_H_
|
||||
#pragma once
|
||||
|
||||
#include "cefclient/common/client_app.h"
|
||||
|
||||
namespace client {
|
||||
|
||||
// Client app implementation for other process types.
|
||||
class ClientAppOther : public ClientApp {
|
||||
public:
|
||||
ClientAppOther();
|
||||
|
||||
private:
|
||||
IMPLEMENT_REFCOUNTING(ClientAppOther);
|
||||
DISALLOW_COPY_AND_ASSIGN(ClientAppOther);
|
||||
};
|
||||
|
||||
} // namespace client
|
||||
|
||||
#endif // CEF_TESTS_CEFCLIENT_COMMON_CLIENT_APP_OTHER_H_
|
Reference in New Issue
Block a user