2013-01-26 04:19:50 +01:00
|
|
|
// Copyright (c) 2013 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.
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#ifndef CEF_TESTS_CEFCLIENT_CLIENTPLUGIN_H_
|
|
|
|
#define CEF_TESTS_CEFCLIENT_CLIENTPLUGIN_H_
|
|
|
|
#pragma once
|
2010-10-28 22:38:27 +02:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#include "include/internal/cef_types.h"
|
2011-05-20 16:42:25 +02:00
|
|
|
|
|
|
|
#if defined(OS_WIN)
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#include "include/cef_nplugin.h"
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-05-16 18:56:12 +02:00
|
|
|
NPError API_CALL NP_ClientGetEntryPoints(NPPluginFuncs* pFuncs);
|
|
|
|
NPError API_CALL NP_ClientInitialize(NPNetscapeFuncs* pFuncs);
|
|
|
|
NPError API_CALL NP_ClientShutdown(void);
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // OS_WIN
|
2010-10-28 22:38:27 +02:00
|
|
|
|
2012-01-10 00:46:23 +01:00
|
|
|
#endif // CEF_TESTS_CEFCLIENT_CLIENTPLUGIN_H_
|