RESOLVED FIXED Bug 91470
[EFL] Replace 0 by NULL in public headers documentation
https://bugs.webkit.org/show_bug.cgi?id=91470
Summary [EFL] Replace 0 by NULL in public headers documentation
Chris Dumez
Reported 2012-07-16 22:40:06 PDT
It was discussed on the mailing list that NULL was more appropriate than 0 in public WebKit-EFL and WebKit2-EFL headers, since those are C headers.
Attachments
Patch (42.07 KB, patch)
2012-07-17 00:39 PDT, Chris Dumez
no flags
Chris Dumez
Comment 1 2012-07-17 00:39:41 PDT
Created attachment 152708 [details] Patch I had to patch the style checking script as well because it would not recognize our header files as being C files and it would complain if we use NULL in them.
Gyuyoung Kim
Comment 2 2012-07-17 04:20:49 PDT
Though we decide to stop to land big coding style change with kubo anymore, EFL folks decides to change one more thing as below, http://lists.webkit.org/pipermail/webkit-efl/2012-July/000236.html If possible, I still think we should not change big coding style change anymore. But, this patch needs to be landed. So, informal rs+ on my side. Christophe, if this patch is landed, please update this new coding style to WebKit EFL coding style wiki page as well.
WebKit Review Bot
Comment 3 2012-07-17 12:40:45 PDT
Comment on attachment 152708 [details] Patch Clearing flags on attachment: 152708 Committed r122868: <http://trac.webkit.org/changeset/122868>
WebKit Review Bot
Comment 4 2012-07-17 12:40:50 PDT
All reviewed patches have been landed. Closing bug.
Tony Chang
Comment 5 2012-07-17 15:17:06 PDT
This is causing 3 webkitpy unit tests to fail: [1030/1444] webkitpy.style.checkers.cpp_unittest.CppStyleTest.test_pointer_reference_marker_location erred: Traceback (most recent call last): File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py", line 2012, in test_pointer_reference_marker_location 'foo.c') File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py", line 316, in assert_lint self.assertEquals(expected_message, self.perform_single_line_lint(code, file_name)) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py", line 270, in perform_single_line_lint return self.perform_lint(code, filename, basic_error_rules) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py", line 259, in perform_lint self.process_file_data(filename, extension, lines, error_collector, unit_test_config) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py", line 253, in process_file_data error, self.min_confidence, unit_test_config) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 3652, in process_file_data checker.check(lines) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 3644, in check self.handle_style_error, self.min_confidence) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 3518, in _process_lines include_state, function_state, class_state, file_state, error) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 3485, in process_line file_state, error) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 3024, in check_language check_identifier_name_in_declaration(filename, line_number, line, file_state, error) File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 3122, in check_identifier_name_in_declaration if not file_state.is_objective_c() and modified_identifier.find('_') >= 0: File "/mnt/data/b/WebKit-BuildSlave/chromium-linux-release-tests/build/Tools/Scripts/webkitpy/style/checkers/cpp.py", line 1184, in is_objective_c if self._is_objective_c is None: AttributeError: '_FileState' object has no attribute '_is_objective_c'
Dirk Pranke
Comment 6 2012-07-17 16:13:02 PDT
(In reply to comment #5) > This is causing 3 webkitpy unit tests to fail: > Fixed in http://trac.webkit.org/changeset/122889
Note You need to log in before you can comment on or make changes to this bug.