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_SHARED_COMMON_CLIENT_APP_OTHER_H_ 6 #define CEF_TESTS_SHARED_COMMON_CLIENT_APP_OTHER_H_ 7 #pragma once 8 9 #include "tests/shared/common/client_app.h" 10 11 namespace client { 12 13 // Client app implementation for other process types. 14 class ClientAppOther : public ClientApp { 15 public: 16 ClientAppOther(); 17 18 private: 19 IMPLEMENT_REFCOUNTING(ClientAppOther); 20 DISALLOW_COPY_AND_ASSIGN(ClientAppOther); 21 }; 22 23 } // namespace client 24 25 #endif // CEF_TESTS_SHARED_COMMON_CLIENT_APP_OTHER_H_ 26