Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(176)

Unified Diff: ppapi/c/trusted/ppp_broker.h

Issue 7396002: More trivial cleanupi of ppapi/c/trusted headers (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ppapi/c/trusted/ppp_broker.h
===================================================================
--- ppapi/c/trusted/ppp_broker.h (revision 92804)
+++ ppapi/c/trusted/ppp_broker.h (working copy)
@@ -2,27 +2,36 @@
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
+
+/* From trusted/ppp_broker.idl modified Sat Jul 16 16:51:03 2011. */
+
#ifndef PPAPI_C_TRUSTED_PPP_BROKER_H_
#define PPAPI_C_TRUSTED_PPP_BROKER_H_
+#include "ppapi/c/pp_macros.h"
+
+/**
+ * @file
+ * This file defines functions that your module must implement to support a
+ * broker.
+ */
+
+
+// {PENDING: undefine PP_EXPORT?}
+
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_stdint.h"
+
#if __GNUC__ >= 4
+
#define PP_EXPORT __attribute__ ((visibility("default")))
#elif defined(_MSC_VER)
#define PP_EXPORT __declspec(dllexport)
#endif
-/**
- * @file
- * This file defines functions that your module must implement to support a
- * broker.
- */
-// {PENDING: undefine PP_EXPORT?}
-
/* We don't want name mangling for these external functions. We only need
* 'extern "C"' if we're compiling with a C++ compiler.
*/
@@ -90,3 +99,4 @@
#endif
#endif /* PPAPI_C_TRUSTED_PPP_BROKER_H_ */
+
« ppapi/c/trusted/ppb_file_io_trusted.h ('K') | « ppapi/c/trusted/ppb_url_loader_trusted.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698