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

Unified Diff: ppapi/c/ppp.h

Issue 5997003: Change ppapi C++ comment style into C. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/ppapi
Patch Set: First. Created 10 years 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
« no previous file with comments | « ppapi/c/ppb_var.h ('k') | ppapi/c/ppp_instance.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/ppp.h
diff --git a/ppapi/c/ppp.h b/ppapi/c/ppp.h
index 67d66c38841d1defb17b1824588b7c951311b17b..2f3a19abbe99da9efe2defe42d32e2edc930f7a8 100644
--- a/ppapi/c/ppp.h
+++ b/ppapi/c/ppp.h
@@ -1,7 +1,7 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
+/* Copyright (c) 2010 The Chromium 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 PPAPI_C_PPP_H_
#define PPAPI_C_PPP_H_
@@ -24,8 +24,9 @@
* @{
*/
-// We don't want name mangling for these external functions. We only need
-// 'extern "C"' if we're compiling with a C++ compiler.
+/* We don't want name mangling for these external functions. We only need
+ * 'extern "C"' if we're compiling with a C++ compiler.
+ */
#ifdef __cplusplus
extern "C" {
#endif
@@ -50,11 +51,12 @@ PP_EXPORT void PPP_ShutdownModule();
PP_EXPORT const void* PPP_GetInterface(const char* interface_name);
#ifdef __cplusplus
-} // extern "C"
+} /* extern "C" */
#endif
/**
* @}
* End addtogroup PPP
*/
-#endif // PPAPI_C_PPP_H_
+#endif /* PPAPI_C_PPP_H_ */
+
« no previous file with comments | « ppapi/c/ppb_var.h ('k') | ppapi/c/ppp_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698