diff options
author | neb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-20 18:15:59 +0000 |
---|---|---|
committer | neb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-20 18:15:59 +0000 |
commit | 6ea69540b4f3f45a125bb5e704cda62840471991 (patch) | |
tree | 6f822dc39466e5c86f5395e47809350de47cf32b /ppapi/c/dev | |
parent | 01b93396e207e15950af502697aaf66ccc5bf54f (diff) | |
download | chromium_src-6ea69540b4f3f45a125bb5e704cda62840471991.zip chromium_src-6ea69540b4f3f45a125bb5e704cda62840471991.tar.gz chromium_src-6ea69540b4f3f45a125bb5e704cda62840471991.tar.bz2 |
Change ppapi C++ comment style into C.
This allows graphics 2d example to compile.
BUG=none
TEST=Compiling examples/2d/graphics_2d.c with NaCl works.
Review URL: http://codereview.chromium.org/5997003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69725 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/c/dev')
37 files changed, 221 insertions, 187 deletions
diff --git a/ppapi/c/dev/deprecated_bool.h b/ppapi/c/dev/deprecated_bool.h index 327700f..6c66dff 100644 --- a/ppapi/c/dev/deprecated_bool.h +++ b/ppapi/c/dev/deprecated_bool.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_DEV_DEPRECATED_BOOL_H_ #define PPAPI_C_DEV_DEPRECATED_BOOL_H_ @@ -39,5 +39,5 @@ typedef char bool; * End addtogroup PP */ -#endif // PPAPI_C_DEV_DEPRECATED_BOOL_H_ +#endif /* PPAPI_C_DEV_DEPRECATED_BOOL_H_ */ diff --git a/ppapi/c/dev/pp_cursor_type_dev.h b/ppapi/c/dev/pp_cursor_type_dev.h index a799468..454e55b 100644 --- a/ppapi/c/dev/pp_cursor_type_dev.h +++ b/ppapi/c/dev/pp_cursor_type_dev.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_DEV_PP_CURSORTYPE_DEV_H_ #define PPAPI_C_DEV_PP_CURSORTYPE_DEV_H_ @@ -53,4 +53,5 @@ enum PP_CursorType_Dev { }; PP_COMPILE_ASSERT_ENUM_SIZE_IN_BYTES(PP_CursorType_Dev, 4); -#endif // PPAPI_C_DEV_PP_CURSORTYPE_DEV_H_ +#endif /* PPAPI_C_DEV_PP_CURSORTYPE_DEV_H_ */ + diff --git a/ppapi/c/dev/pp_file_info_dev.h b/ppapi/c/dev/pp_file_info_dev.h index d381193..dd247fc 100644 --- a/ppapi/c/dev/pp_file_info_dev.h +++ b/ppapi/c/dev/pp_file_info_dev.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_DEV_PP_FILE_INFO_DEV_H_ #define PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ @@ -12,7 +12,7 @@ typedef enum { PP_FILETYPE_REGULAR, PP_FILETYPE_DIRECTORY, - PP_FILETYPE_OTHER // A catch-all for unidentified types. + PP_FILETYPE_OTHER /* A catch-all for unidentified types. */ } PP_FileType_Dev; PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileType_Dev, 4); @@ -24,7 +24,7 @@ typedef enum { PP_COMPILE_ASSERT_SIZE_IN_BYTES(PP_FileSystemType_Dev, 4); struct PP_FileInfo_Dev { - int64_t size; // Measured in bytes + int64_t size; /* Measured in bytes */ PP_FileType_Dev type; PP_FileSystemType_Dev system_type; PP_Time creation_time; @@ -33,4 +33,5 @@ struct PP_FileInfo_Dev { }; PP_COMPILE_ASSERT_STRUCT_SIZE_IN_BYTES(PP_FileInfo_Dev, 40); -#endif // PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ +#endif /* PPAPI_C_DEV_PP_FILE_INFO_DEV_H_ */ + diff --git a/ppapi/c/dev/pp_video_dev.h b/ppapi/c/dev/pp_video_dev.h index adef7be..85fe3a6 100644 --- a/ppapi/c/dev/pp_video_dev.h +++ b/ppapi/c/dev/pp_video_dev.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_DEV_PP_VIDEO_DEV_H_ #define PPAPI_C_DEV_PP_VIDEO_DEV_H_ @@ -333,4 +333,5 @@ struct PP_VideoDecoderConfig_Dev { PP_VideoDecodeEventHandler_Func_Dev event_handler; }; -#endif // PPAPI_C_DEV_PP_VIDEO_DEV_H_ +#endif /* PPAPI_C_DEV_PP_VIDEO_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_audio_config_dev.h b/ppapi/c/dev/ppb_audio_config_dev.h index 07c7824..cf0df7b 100644 --- a/ppapi/c/dev/ppb_audio_config_dev.h +++ b/ppapi/c/dev/ppb_audio_config_dev.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_DEV_PPB_AUDIO_CONFIG_DEV_H_ #define PPAPI_C_DEV_PPB_AUDIO_CONFIG_DEV_H_ @@ -93,4 +93,5 @@ struct PPB_AudioConfig_Dev { uint32_t (*GetSampleFrameCount)(PP_Resource config); }; -#endif // PPAPI_C_DEV_PPB_AUDIO_CONFIG_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_AUDIO_CONFIG_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_audio_dev.h b/ppapi/c/dev/ppb_audio_dev.h index 667371c..1e78be2 100644 --- a/ppapi/c/dev/ppb_audio_dev.h +++ b/ppapi/c/dev/ppb_audio_dev.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_DEV_PPB_AUDIO_DEV_H_ #define PPAPI_C_DEV_PPB_AUDIO_DEV_H_ @@ -69,4 +69,5 @@ struct PPB_Audio_Dev { PP_Bool (*StopPlayback)(PP_Resource audio); }; -#endif // PPAPI_C_DEV_PPB_DEVICE_CONTEXT_AUDIO_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_DEVICE_CONTEXT_AUDIO_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_audio_trusted_dev.h b/ppapi/c/dev/ppb_audio_trusted_dev.h index aab83fe..37249af 100644 --- a/ppapi/c/dev/ppb_audio_trusted_dev.h +++ b/ppapi/c/dev/ppb_audio_trusted_dev.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_DEV_PPB_AUDIO_TRUSTED_DEV_H_ #define PPAPI_C_DEV_PPB_AUDIO_TRUSTED_DEV_H_ @@ -46,4 +46,5 @@ struct PPB_AudioTrusted_Dev { uint32_t* shm_size); }; -#endif // PPAPI_C_DEV_PPB_AUDIO_TRUSTED_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_AUDIO_TRUSTED_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_buffer_dev.h b/ppapi/c/dev/ppb_buffer_dev.h index 9906967..8c39c420 100644 --- a/ppapi/c/dev/ppb_buffer_dev.h +++ b/ppapi/c/dev/ppb_buffer_dev.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_DEV_PPB_BUFFER_DEV_H_ #define PPAPI_C_DEV_PPB_BUFFER_DEV_H_ @@ -33,4 +33,5 @@ struct PPB_Buffer_Dev { void (*Unmap)(PP_Resource resource); }; -#endif // PPAPI_C_DEV_PPB_BUFFER_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_BUFFER_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_char_set_dev.h b/ppapi/c/dev/ppb_char_set_dev.h index ac1ad96..19b0f25 100644 --- a/ppapi/c/dev/ppb_char_set_dev.h +++ b/ppapi/c/dev/ppb_char_set_dev.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_DEV_PPB_CHAR_SET_DEV_H_ #define PPAPI_C_DEV_PPB_CHAR_SET_DEV_H_ @@ -77,4 +77,5 @@ struct PPB_CharSet_Dev { struct PP_Var (*GetDefaultCharSet)(PP_Module module); }; -#endif // PPAPI_C_DEV_PPB_CHAR_SET_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_CHAR_SET_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_cursor_control_dev.h b/ppapi/c/dev/ppb_cursor_control_dev.h index 45b37e2..92d63ac 100644 --- a/ppapi/c/dev/ppb_cursor_control_dev.h +++ b/ppapi/c/dev/ppb_cursor_control_dev.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_DEV_PPB_CURSOR_CONTROL_DEV_H_ #define PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ @@ -53,4 +53,5 @@ struct PPB_CursorControl_Dev { PP_Bool (*CanLockCursor)(PP_Instance); }; -#endif // PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_CURSOR_CONTROL_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_directory_reader_dev.h b/ppapi/c/dev/ppb_directory_reader_dev.h index 8dc0f6a..a5f7b45 100644 --- a/ppapi/c/dev/ppb_directory_reader_dev.h +++ b/ppapi/c/dev/ppb_directory_reader_dev.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_DEV_PPB_DIRECTORY_READER_DEV_H_ #define PPAPI_C_DEV_PPB_DIRECTORY_READER_DEV_H_ @@ -61,4 +61,5 @@ struct PPB_DirectoryReader_Dev { struct PP_CompletionCallback callback); }; -#endif // PPAPI_C_DEV_PPB_DIRECTORY_READER_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_DIRECTORY_READER_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_file_chooser_dev.h b/ppapi/c/dev/ppb_file_chooser_dev.h index b63a930..22d799f 100644 --- a/ppapi/c/dev/ppb_file_chooser_dev.h +++ b/ppapi/c/dev/ppb_file_chooser_dev.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_DEV_PPB_FILE_CHOOSER_DEV_H_ #define PPAPI_C_DEV_PPB_FILE_CHOOSER_DEV_H_ @@ -64,4 +64,5 @@ struct PPB_FileChooser_Dev { PP_Resource (*GetNextChosenFile)(PP_Resource chooser); }; -#endif // PPAPI_C_DEV_PPB_FILE_CHOOSER_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FILE_CHOOSER_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_file_io_dev.h b/ppapi/c/dev/ppb_file_io_dev.h index 1264599..521980c 100644 --- a/ppapi/c/dev/ppb_file_io_dev.h +++ b/ppapi/c/dev/ppb_file_io_dev.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_DEV_PPB_FILE_IO_DEV_H_ #define PPAPI_C_DEV_PPB_FILE_IO_DEV_H_ @@ -115,4 +115,5 @@ struct PPB_FileIO_Dev { void (*Close)(PP_Resource file_io); }; -#endif // PPAPI_C_DEV_PPB_FILE_IO_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FILE_IO_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_file_io_trusted_dev.h b/ppapi/c/dev/ppb_file_io_trusted_dev.h index f4915fa..4919374 100644 --- a/ppapi/c/dev/ppb_file_io_trusted_dev.h +++ b/ppapi/c/dev/ppb_file_io_trusted_dev.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_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ #define PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ @@ -42,4 +42,5 @@ struct PPB_FileIOTrusted_Dev { // undesirable. }; -#endif // PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FILE_IO_TRUSTED_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_file_ref_dev.h b/ppapi/c/dev/ppb_file_ref_dev.h index 210ddbd..96f5fac 100644 --- a/ppapi/c/dev/ppb_file_ref_dev.h +++ b/ppapi/c/dev/ppb_file_ref_dev.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_DEV_PPB_FILE_REF_DEV_H_ #define PPAPI_C_DEV_PPB_FILE_REF_DEV_H_ @@ -80,4 +80,5 @@ struct PPB_FileRef_Dev { struct PP_CompletionCallback callback); }; -#endif // PPAPI_C_DEV_PPB_FILE_REF_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FILE_REF_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_file_system_dev.h b/ppapi/c/dev/ppb_file_system_dev.h index 9f93a1a..9a1f9b1 100644 --- a/ppapi/c/dev/ppb_file_system_dev.h +++ b/ppapi/c/dev/ppb_file_system_dev.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_DEV_PPB_FILE_SYSTEM_DEV_H_ #define PPAPI_C_DEV_PPB_FILE_SYSTEM_DEV_H_ @@ -26,4 +26,5 @@ struct PPB_FileSystem_Dev { struct PP_CompletionCallback callback); }; -#endif // PPAPI_C_DEV_PPB_FILE_SYSTEM_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FILE_SYSTEM_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_find_dev.h b/ppapi/c/dev/ppb_find_dev.h index b74416e..957cdfc 100644 --- a/ppapi/c/dev/ppb_find_dev.h +++ b/ppapi/c/dev/ppb_find_dev.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_DEV_PPB_FIND_DEV_H_ #define PPAPI_C_DEV_PPB_FIND_DEV_H_ @@ -26,4 +26,5 @@ struct PPB_Find_Dev { }; -#endif // PPAPI_C_DEV_PPB_FIND_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FIND_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_font_dev.h b/ppapi/c/dev/ppb_font_dev.h index 8056d95..8f6e5574 100644 --- a/ppapi/c/dev/ppb_font_dev.h +++ b/ppapi/c/dev/ppb_font_dev.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_DEV_PPB_FONT_DEV_H_ #define PPAPI_C_DEV_PPB_FONT_DEV_H_ @@ -173,4 +173,5 @@ struct PPB_Font_Dev { uint32_t char_offset); }; -#endif // PPAPI_C_DEV_PPB_FONT_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FONT_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_fullscreen_dev.h b/ppapi/c/dev/ppb_fullscreen_dev.h index 3166eb9..b6117551 100644 --- a/ppapi/c/dev/ppb_fullscreen_dev.h +++ b/ppapi/c/dev/ppb_fullscreen_dev.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_DEV_PPB_FULLSCREEN_DEV_H_ #define PPAPI_C_DEV_PPB_FULLSCREEN_DEV_H_ @@ -25,4 +25,5 @@ struct PPB_Fullscreen_Dev { PP_Bool (*SetFullscreen)(PP_Instance instance, PP_Bool fullscreen); }; -#endif // PPAPI_C_DEV_PPB_FULLSCREEN_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_FULLSCREEN_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_graphics_3d_dev.h b/ppapi/c/dev/ppb_graphics_3d_dev.h index 27793c1..dc77571 100644 --- a/ppapi/c/dev/ppb_graphics_3d_dev.h +++ b/ppapi/c/dev/ppb_graphics_3d_dev.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_DEV_PPB_GRAPHICS_3D_DEV_H_ #define PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ @@ -101,4 +101,5 @@ struct PPB_Graphics3D_Dev { uint32_t (*GetError)(); }; -#endif // PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_GRAPHICS_3D_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_scrollbar_dev.h b/ppapi/c/dev/ppb_scrollbar_dev.h index 25cf0e7..254402e 100644 --- a/ppapi/c/dev/ppb_scrollbar_dev.h +++ b/ppapi/c/dev/ppb_scrollbar_dev.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_DEV_PPB_SCROLLBAR_DEV_H_ #define PPAPI_C_DEV_PPB_SCROLLBAR_DEV_H_ @@ -62,4 +62,5 @@ struct PPB_Scrollbar_Dev { int32_t multiplier); }; -#endif // PPAPI_C_DEV_PPB_SCROLLBAR_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_SCROLLBAR_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_testing_dev.h b/ppapi/c/dev/ppb_testing_dev.h index 5606ca6..7b26c72 100644 --- a/ppapi/c/dev/ppb_testing_dev.h +++ b/ppapi/c/dev/ppb_testing_dev.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_DEV_PPB_TESTING_DEV_H_ #define PPAPI_C_DEV_PPB_TESTING_DEV_H_ @@ -68,4 +68,5 @@ struct PPB_Testing_Dev { uint32_t (*GetLiveObjectCount)(PP_Module module); }; -#endif // PPAPI_C_DEV_PPB_TESTING_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_TESTING_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_transport_dev.h b/ppapi/c/dev/ppb_transport_dev.h index 33dbf57..6196dad 100644 --- a/ppapi/c/dev/ppb_transport_dev.h +++ b/ppapi/c/dev/ppb_transport_dev.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_PPB_TRANSPORT_DEV_H_ #define PPAPI_C_PPB_TRANSPORT_DEV_H_ @@ -67,4 +67,5 @@ struct PPB_Transport_Dev { int32_t (*Close)(PP_Resource transport); }; -#endif // PPAPI_C_PPB_TRANSPORT_DEV_H_ +#endif /* PPAPI_C_PPB_TRANSPORT_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_url_util_dev.h b/ppapi/c/dev/ppb_url_util_dev.h index 49bcc18..cf8f287 100644 --- a/ppapi/c/dev/ppb_url_util_dev.h +++ b/ppapi/c/dev/ppb_url_util_dev.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_DEV_PPB_URL_UTIL_DEV_H_ #define PPAPI_C_DEV_PPB_URL_UTIL_DEV_H_ @@ -111,4 +111,5 @@ struct PPB_UrlUtil_Dev { PP_Bool (*DocumentCanAccessDocument)(PP_Instance active, PP_Instance target); }; -#endif // PPAPI_C_DEV_PPB_URL_UTIL_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_URL_UTIL_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_var_deprecated.h b/ppapi/c/dev/ppb_var_deprecated.h index e71ba9f..dd3f8bc 100644 --- a/ppapi/c/dev/ppb_var_deprecated.h +++ b/ppapi/c/dev/ppb_var_deprecated.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_PPB_VAR_DEPRECATED_H_ #define PPAPI_C_PPB_VAR_DEPRECATED_H_ @@ -240,4 +240,5 @@ struct PPB_Var_Deprecated { * @} * End addtogroup PPB */ -#endif // PPAPI_C_PPB_VAR_DEPRECATED_H_ +#endif /* PPAPI_C_PPB_VAR_DEPRECATED_H_ */ + diff --git a/ppapi/c/dev/ppb_video_decoder_dev.h b/ppapi/c/dev/ppb_video_decoder_dev.h index 975e68b..f4e6a31 100644 --- a/ppapi/c/dev/ppb_video_decoder_dev.h +++ b/ppapi/c/dev/ppb_video_decoder_dev.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_DEV_PPB_VIDEO_DECODER_DEV_H_ #define PPAPI_C_DEV_PPB_VIDEO_DECODER_DEV_H_ @@ -84,4 +84,5 @@ struct PPB_VideoDecoder_Dev { struct PP_VideoUncompressedDataBuffer_Dev* buffer); }; -#endif // PPAPI_C_DEV_PPB_VIDEO_DECODER_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_VIDEO_DECODER_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_widget_dev.h b/ppapi/c/dev/ppb_widget_dev.h index 3d23e0e..1c2edfdb 100644 --- a/ppapi/c/dev/ppb_widget_dev.h +++ b/ppapi/c/dev/ppb_widget_dev.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_DEV_PPB_WIDGET_DEV_H_ #define PPAPI_C_DEV_PPB_WIDGET_DEV_H_ @@ -38,4 +38,5 @@ struct PPB_Widget_Dev { const struct PP_Rect* location); }; -#endif // PPAPI_C_DEV_PPB_WIDGET_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_WIDGET_DEV_H_ */ + diff --git a/ppapi/c/dev/ppb_zoom_dev.h b/ppapi/c/dev/ppb_zoom_dev.h index e6046e1..83c6f6b 100644 --- a/ppapi/c/dev/ppb_zoom_dev.h +++ b/ppapi/c/dev/ppb_zoom_dev.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_DEV_PPB_ZOOM_DEV_H_ #define PPAPI_C_DEV_PPB_ZOOM_DEV_H_ @@ -25,4 +25,5 @@ struct PPB_Zoom_Dev { double maximium_factor); }; -#endif // PPAPI_C_DEV_PPB_ZOOM_DEV_H_ +#endif /* PPAPI_C_DEV_PPB_ZOOM_DEV_H_ */ + diff --git a/ppapi/c/dev/ppp_class_deprecated.h b/ppapi/c/dev/ppp_class_deprecated.h index 2f82348..0f39d26 100644 --- a/ppapi/c/dev/ppp_class_deprecated.h +++ b/ppapi/c/dev/ppp_class_deprecated.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_CLASS_DEPRECATED_H_ #define PPAPI_C_PPP_CLASS_DEPRECATED_H_ @@ -131,4 +131,5 @@ struct PPP_Class_Deprecated { * @} * End addtogroup PPP */ -#endif // PPAPI_C_PPP_CLASS_DEPRECATED_H_ +#endif /* PPAPI_C_PPP_CLASS_DEPRECATED_H_ */ + diff --git a/ppapi/c/dev/ppp_cursor_control_dev.h b/ppapi/c/dev/ppp_cursor_control_dev.h index b9403f4..8a28bf6 100644 --- a/ppapi/c/dev/ppp_cursor_control_dev.h +++ b/ppapi/c/dev/ppp_cursor_control_dev.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_DEV_PPP_CURSOR_CONTROL_DEV_H_ #define PPAPI_C_DEV_PPP_CURSOR_CONTROL_DEV_H_ @@ -15,5 +15,5 @@ struct PPP_CursorControl_Dev { void (*CursorLockLost)(PP_Instance instance); }; -#endif // PPAPI_C_DEV_PPP_CURSOR_CONTROL_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_CURSOR_CONTROL_DEV_H_ */ diff --git a/ppapi/c/dev/ppp_find_dev.h b/ppapi/c/dev/ppp_find_dev.h index c20f699..c97a2b4 100644 --- a/ppapi/c/dev/ppp_find_dev.h +++ b/ppapi/c/dev/ppp_find_dev.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_DEV_PPP_FIND_DEV_H_ #define PPAPI_C_DEV_PPP_FIND_DEV_H_ @@ -31,4 +31,5 @@ struct PPP_Find_Dev { void (*StopFind)(PP_Instance instance); }; -#endif // PPAPI_C_DEV_PPP_FIND_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_FIND_DEV_H_ */ + diff --git a/ppapi/c/dev/ppp_graphics_3d_dev.h b/ppapi/c/dev/ppp_graphics_3d_dev.h index 2dc4402..d0a4e16 100644 --- a/ppapi/c/dev/ppp_graphics_3d_dev.h +++ b/ppapi/c/dev/ppp_graphics_3d_dev.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_DEV_PPP_GRAPHICS_3D_DEV_H_ #define PPAPI_C_DEV_PPP_GRAPHICS_3D_DEV_H_ @@ -14,5 +14,5 @@ struct PPP_Graphics3D_Dev { void (*Graphics3DContextLost)(PP_Instance instance); }; -#endif // PPAPI_C_DEV_PPP_GRAPHICS_3D_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_GRAPHICS_3D_DEV_H_ */ diff --git a/ppapi/c/dev/ppp_printing_dev.h b/ppapi/c/dev/ppp_printing_dev.h index 00b5e6b..800268d 100644 --- a/ppapi/c/dev/ppp_printing_dev.h +++ b/ppapi/c/dev/ppp_printing_dev.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_DEV_PPP_PRINTING_DEV_H_ #define PPAPI_C_DEV_PPP_PRINTING_DEV_H_ @@ -76,4 +76,5 @@ struct PPP_Printing_Dev { void (*End)(PP_Instance instance); }; -#endif // PPAPI_C_DEV_PPP_PRINTING_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_PRINTING_DEV_H_ */ + diff --git a/ppapi/c/dev/ppp_scrollbar_dev.h b/ppapi/c/dev/ppp_scrollbar_dev.h index b032a2a..4b464d5 100644 --- a/ppapi/c/dev/ppp_scrollbar_dev.h +++ b/ppapi/c/dev/ppp_scrollbar_dev.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_DEV_PPP_SCROLLBAR_DEV_H_ #define PPAPI_C_DEV_PPP_SCROLLBAR_DEV_H_ @@ -19,4 +19,5 @@ struct PPP_Scrollbar_Dev { uint32_t value); }; -#endif // PPAPI_C_DEV_PPP_SCROLLBAR_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_SCROLLBAR_DEV_H_ */ + diff --git a/ppapi/c/dev/ppp_selection_dev.h b/ppapi/c/dev/ppp_selection_dev.h index 834b4ed..71ca4db 100644 --- a/ppapi/c/dev/ppp_selection_dev.h +++ b/ppapi/c/dev/ppp_selection_dev.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_DEV_PPP_SELECTION_DEV_H_ #define PPAPI_C_DEV_PPP_SELECTION_DEV_H_ @@ -21,4 +21,5 @@ struct PPP_Selection_Dev { PP_Bool html); }; -#endif // PPAPI_C_DEV_PPP_SELECTION_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_SELECTION_DEV_H_ */ + diff --git a/ppapi/c/dev/ppp_widget_dev.h b/ppapi/c/dev/ppp_widget_dev.h index 26a4847..8d392da 100644 --- a/ppapi/c/dev/ppp_widget_dev.h +++ b/ppapi/c/dev/ppp_widget_dev.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_DEV_PPP_WIDGET_DEV_H_ #define PPAPI_C_DEV_PPP_WIDGET_DEV_H_ @@ -19,4 +19,5 @@ struct PPP_Widget_Dev { const struct PP_Rect* dirty_rect); }; -#endif // PPAPI_C_DEV_PPP_WIDGET_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_WIDGET_DEV_H_ */ + diff --git a/ppapi/c/dev/ppp_zoom_dev.h b/ppapi/c/dev/ppp_zoom_dev.h index 90c8be9..71f0402 100644 --- a/ppapi/c/dev/ppp_zoom_dev.h +++ b/ppapi/c/dev/ppp_zoom_dev.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_DEV_PPP_ZOOM_DEV_H_ #define PPAPI_C_DEV_PPP_ZOOM_DEV_H_ @@ -20,4 +20,5 @@ struct PPP_Zoom_Dev { PP_Bool text_only); }; -#endif // PPAPI_C_DEV_PPP_ZOOM_DEV_H_ +#endif /* PPAPI_C_DEV_PPP_ZOOM_DEV_H_ */ + |