New issue
Advanced search Search tips

Issue 760462 link

Starred by 4 users

Issue metadata

Status: Fixed
Owner:
Closed: Sep 2017
Cc:
Components:
EstimatedDays: ----
NextAction: ----
OS: ----
Pri: 3
Type: Task

Blocking:
issue 768828



Sign in to add a comment

Blink binding tools should support snake_case file names

Project Member Reported by tkent@chromium.org, Aug 30 2017

Issue description

- Generates v8_interface_name.{cc,h}
- Use |#include "..../interface_name.h"| in generated code
- Generates snake_case.{cc,h} for unions and dictionaries
  e.g. double_or_string.{cc,h}, add_event_listener_options.{cc,h}

 

Comment 1 by tkent@chromium.org, Aug 30 2017

Description: Show this description
Cc: bashi@chromium.org
Status: Available (was: Untriaged)
Project Member

Comment 3 by bugdroid1@chromium.org, Sep 1 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/8a86060c06ead0974ae6b3874272e298ee076ed1

commit 8a86060c06ead0974ae6b3874272e298ee076ed1
Author: Kent Tamura <tkent@chromium.org>
Date: Fri Sep 01 06:09:58 2017

blinkpy: Add a function to convert CamelCase names to snake_case names.

* The function will be used to map CamelCase names to snake_case file
  names in the great Blink mv and IDL compiler.
* test-webkitpy runs tests in //third_party/blink/tools/blinkpy too.

NOTRY=true

Bug: 760459, 760462
Change-Id: I7338faefdfb6c0c55e6a38aa6afbd248ef0de085
Reviewed-on: https://chromium-review.googlesource.com/641174
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Quinten Yearsley <qyearsley@chromium.org>
Cr-Commit-Position: refs/heads/master@{#499143}
[modify] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/WebKit/Tools/Scripts/test-webkitpy
[modify] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/WebKit/Tools/Scripts/webkitpy/common/path_finder.py
[modify] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/python.py
[add] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/blink/tools/blinkpy/__init__.py
[add] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/blink/tools/blinkpy/common/__init__.py
[add] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/blink/tools/blinkpy/common/camel_to_snake.py
[add] https://crrev.com/8a86060c06ead0974ae6b3874272e298ee076ed1/third_party/blink/tools/blinkpy/common/camel_to_snake_unittest.py

Project Member

Comment 4 by bugdroid1@chromium.org, Sep 5 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/95c93e910caa6d5c4ff470e0abc621343dc2ab9b

commit 95c93e910caa6d5c4ff470e0abc621343dc2ab9b
Author: Kent Tamura <tkent@chromium.org>
Date: Tue Sep 05 06:34:49 2017

IDL compiler: Remove idl_filename_to_interface_name().

After the Great Blink mv, we can't obtain interfacce name from an IDL
file name. This CL removes two definitions of
idl_filename_to_interface_name(), and updates their callsites.

- Some callsites need file basenames, not interface names.
  This CL adds utilities.idl_filename_to_basename().

- Some callsites need interface names.
 - If IDLDefinitions is available, get it as IDLDefinitions.first_name.
 - If IDLDefinitions is not available, get it by
   get_first_interface_name_from_idl(), which does regular expression
   matching.

Bug: 760462
Change-Id: I101fe23c51624f11875239a84ae128558f8b875a
Reviewed-on: https://chromium-review.googlesource.com/649933
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#499577}
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/aggregate_generated_bindings.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/compute_global_objects.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/idl_compiler.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/idl_definitions.py
[modify] https://crrev.com/95c93e910caa6d5c4ff470e0abc621343dc2ab9b/third_party/WebKit/Source/bindings/scripts/utilities.py

Project Member

Comment 5 by bugdroid1@chromium.org, Sep 6 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/0cf65d3a740b1623bde218b80dc5e1271a8994d6

commit 0cf65d3a740b1623bde218b80dc5e1271a8994d6
Author: Kent Tamura <tkent@chromium.org>
Date: Wed Sep 06 02:18:12 2017

IDL compiler: Generate snake_case.{cc,h} files for unions and callback functions.

- Move to_snake_case() from v8_utilities.py to utilities.py because it
  is used in non-v8 code too.

- As for other generated files, it's difficult to rename them without
  renaming IDL files. We'll rename them at once.

This CL has no behavior changes.

Bug: 760462
Cq-Include-Trybots: master.tryserver.chromium.android:android_optional_gpu_tests_rel;master.tryserver.chromium.linux:linux_optional_gpu_tests_rel;master.tryserver.chromium.mac:mac_optional_gpu_tests_rel;master.tryserver.chromium.win:win_optional_gpu_tests_rel
Change-Id: I66d84a2e5a1ab7014b44dd6f56b877a751255ace
Reviewed-on: https://chromium-review.googlesource.com/650273
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#499853}
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/core/v8/BUILD.gn
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/core/v8/IDLTypesTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/core/v8/NativeValueTraitsImplTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/core/v8/V0CustomElementConstructorBuilder.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/core/v8/V8IntersectionObserverDelegate.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/modules/v8/generated.gni
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/utilities.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/v8_callback_function.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/v8_types.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/v8_union.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/templates/callback_function.cpp.tmpl
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/TestDictionary.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/TestDictionaryDerivedImplementedAs.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/V8TestCallbackFunctions.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceConstructor.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/V8TestSpecialOperations.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/V8TestTypedefs.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/any_callback_function_optional_any_arg.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/any_callback_function_optional_any_arg.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/array_buffer_or_array_buffer_view_or_dictionary.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/array_buffer_or_array_buffer_view_or_dictionary.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/boolean_or_element_sequence.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/boolean_or_element_sequence.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/boolean_or_string_or_unrestricted_double.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/boolean_or_string_or_unrestricted_double.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/boolean_or_test_callback_interface.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/boolean_or_test_callback_interface.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/byte_string_or_node_list.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/byte_string_or_node_list.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/byte_string_sequence_sequence_or_byte_string_byte_string_record.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/byte_string_sequence_sequence_or_byte_string_byte_string_record.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/double_or_long_or_boolean_sequence.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/double_or_long_or_boolean_sequence.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/double_or_string.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/double_or_string.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/double_or_string_or_double_or_string_sequence.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/double_or_string_or_double_or_string_sequence.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/element_sequence_or_byte_string_double_or_string_record.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/element_sequence_or_byte_string_double_or_string_record.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/float_or_boolean.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/float_or_boolean.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_callback_function.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_callback_function.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_or_boolean.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_or_boolean.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_or_test_dictionary.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_or_test_dictionary.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_sequence_or_event.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/long_sequence_or_event.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/nested_union_type.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/nested_union_type.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/node_or_node_list.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/node_or_node_list.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_or_array_buffer_or_array_buffer_view.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_or_array_buffer_or_array_buffer_view.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_or_double.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_or_double.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_or_string_sequence.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_or_string_sequence.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_sequence_callback_function_long_sequence_arg.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/string_sequence_callback_function_long_sequence_arg.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_enum_or_double.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_enum_or_double.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_2_or_uint8_array.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_2_or_uint8_array.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_garbage_collected_or_string.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_garbage_collected_or_string.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_or_long.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_or_long.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_or_test_interface_empty.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/test_interface_or_test_interface_empty.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/unrestricted_double_or_string.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/unrestricted_double_or_string.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/unsigned_long_long_or_boolean_or_test_callback_interface.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/unsigned_long_long_or_boolean_or_test_callback_interface.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_dictionary_arg.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_dictionary_arg.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_enum_arg.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_enum_arg.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_interface_arg.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_interface_arg.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_test_interface_sequence_arg.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_test_interface_sequence_arg.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_typedef.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/void_callback_function_typedef.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/xml_http_request_or_string.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/core/xml_http_request_or_string.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/boolean_or_string.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/boolean_or_string.h
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/void_callback_function_modules.cc
[rename] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/bindings/tests/results/modules/void_callback_function_modules.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/AnimationEffectTiming.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/AnimationEffectTimingReadOnly.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/EffectInput.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/EffectInputTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/ElementAnimation.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/KeyframeEffect.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/KeyframeEffectReadOnly.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/KeyframeEffectTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/animation/TimingInput.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/clipboard/DataTransferItem.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/css/cssom/StylePropertyMapReadonly.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/MockScriptElementBase.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/MutationObserver.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/RangeTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/TreeScopeTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/dom/events/EventTarget.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/fileapi/Blob.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/fileapi/File.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/fileapi/FileReader.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/frame/ReportingObserver.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/geometry/DOMMatrix.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/FormData.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/HTMLAllCollection.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/HTMLFormControlsCollection.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/HTMLFormElement.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/HTMLOptionsCollection.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/HTMLScriptElement.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/ImageData.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/custom/CustomElementUpgradeSorterTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/media/MediaDocument.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/track/TrackEvent.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/imagebitmap/ImageBitmapFactories.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/intersection_observer/IntersectionObserver.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/layout/LayoutTestHelper.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/mojo/MojoHandle.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/mojo/MojoWatcher.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/page/scrolling/RootScrollerTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/page/scrolling/SmoothScrollTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/resize_observer/ResizeObserver.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/svg/SVGScriptElement.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/testing/CallbackFunctionTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/testing/DictionaryTest.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/testing/RecordTest.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/testing/SequenceTest.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/testing/UnionTypesTest.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/timing/PerformanceBaseTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/timing/PerformanceObserver.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/timing/PerformanceObserverTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/typed_arrays/DOMArrayPiece.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/url/URLSearchParams.h
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManager.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchManagerTest.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.cpp
[modify] https://crrev.com/0cf65d3a740b1623bde218b80dc5e1271a8994d6/third_party/WebKit/Source/modules/bluetooth/BluetoothRemoteGATTServer.h
[
Project Member

Comment 6 by bugdroid1@chromium.org, Sep 11 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/699d282afa090f3f173a6aa0383efea16268e48c

commit 699d282afa090f3f173a6aa0383efea16268e48c
Author: Kent Tamura <tkent@chromium.org>
Date: Mon Sep 11 08:44:08 2017

bindings: Supports snake_case generated files.

* Adds --snake-case-generated-files to some commands in
  bindings/scripts/.

* bindings/scripts/scripts.gni has a flag to add the flag.
  It's "false" by default.

* blink/tools/move_blink_source.py updates it to "true".

This CL doesn't affect any build at this moment.

Bug: 760462
Change-Id: I2b6e42e65e076831c642ec88a36211419b5ed896
Reviewed-on: https://chromium-review.googlesource.com/657789
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#500863}
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/core/v8/BUILD.gn
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/modules/v8/BUILD.gn
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/aggregate_generated_bindings.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/code_generator_web_agent_api.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/compute_interfaces_info_individual.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/generate_v8_context_snapshot_external_references.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/idl_compiler.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/idl_reader.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/scripts/scripts.gni
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/templates/dictionary_impl.cpp.tmpl
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/templates/dictionary_v8.cpp.tmpl
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Source/bindings/templates/interface_base.cpp.tmpl
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
[modify] https://crrev.com/699d282afa090f3f173a6aa0383efea16268e48c/third_party/blink/tools/move_blink_source.py

Project Member

Comment 7 by bugdroid1@chromium.org, Sep 12 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/357487087b68fb14676e94c725a9c3abbb44d2d7

commit 357487087b68fb14676e94c725a9c3abbb44d2d7
Author: Kent Tamura <tkent@chromium.org>
Date: Tue Sep 12 05:07:48 2017

generate_event_interfaces.py and make_event_factory.py should support snake_case header files.

* generate_event_interfaces.py:
 Generate identical *.json5 even with snake_case IDL input files.
 'name' field of the *.json5 should be "core/events/FooEvent" even after
the great mv.

* make_event_factory.py:
  Add --snake-case-input-files flag to generate #include for snake_case
  file names.

* config.gni and scripts.gni
 Move bindings_generate_snake_case_files flag to config.gni as
 "snake_case_source_files". The flag affects not only bindings but also
 scripts in Source/build/.

Bug: 760462
Change-Id: I0579e25c88a0039e77de2c3c54772f10d750636f
Reviewed-on: https://chromium-review.googlesource.com/662471
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501185}
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/bindings/core/v8/BUILD.gn
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/bindings/modules/v8/BUILD.gn
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/bindings/scripts/generate_event_interfaces.py
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/bindings/scripts/scripts.gni
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/build/scripts/json5_generator.py
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/build/scripts/make_event_factory.py
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/build/scripts/scripts.gni
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/WebKit/Source/config.gni
[modify] https://crrev.com/357487087b68fb14676e94c725a9c3abbb44d2d7/third_party/blink/tools/move_blink_source.py

Project Member

Comment 8 by bugdroid1@chromium.org, Sep 12 2017

Comment 9 by tkent@chromium.org, Sep 12 2017

Summary: Blink binding tools should support snake_case file names (was: IDL compiler should support snake_case file names)
Project Member

Comment 10 by bugdroid1@chromium.org, Sep 13 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/885fd1b3e3de47bf8404b4ae949e10ad98e6960e

commit 885fd1b3e3de47bf8404b4ae949e10ad98e6960e
Author: Kent Tamura <tkent@chromium.org>
Date: Wed Sep 13 03:43:21 2017

move_blink_source.py: Update renamed basenames in Blink *.py.

Affected *.py are mainly for C++-code generators.  This will fix #include
paths in generated code.

_update_basename() replaces only basenames of checked-in files. So we
need to update V8Foo.h individually.

Bug: 578345, 760462
Change-Id: I65ebabc2d11f2a50d60bd11b9242adaffc4030c5
Reviewed-on: https://chromium-review.googlesource.com/662877
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501539}
[modify] https://crrev.com/885fd1b3e3de47bf8404b4ae949e10ad98e6960e/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/885fd1b3e3de47bf8404b4ae949e10ad98e6960e/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py
[modify] https://crrev.com/885fd1b3e3de47bf8404b4ae949e10ad98e6960e/third_party/WebKit/Source/bindings/scripts/code_generator_web_agent_api.py
[modify] https://crrev.com/885fd1b3e3de47bf8404b4ae949e10ad98e6960e/third_party/WebKit/Source/bindings/scripts/generate_conditional_features.py
[modify] https://crrev.com/885fd1b3e3de47bf8404b4ae949e10ad98e6960e/third_party/WebKit/Source/bindings/scripts/idl_compiler.py
[modify] https://crrev.com/885fd1b3e3de47bf8404b4ae949e10ad98e6960e/third_party/blink/tools/move_blink_source.py

Project Member

Comment 11 by bugdroid1@chromium.org, Sep 13 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/ee5cf70eee89de0874db5fd7d6e78b0652116b94

commit ee5cf70eee89de0874db5fd7d6e78b0652116b94
Author: Kent Tamura <tkent@chromium.org>
Date: Wed Sep 13 21:34:53 2017

make_internal_settings.py and make_internal_runtime_flags.py should generate snake_case IDL files if snake_case_source_files is set.

* Rename --snake-case-input-files flag for make_event_factory.py to
  --snake-case-source-files because we'd like to use the flag for
  output too.

* make_internal_settings.py and make_internal_runtime_flags.py want to
  refer the flag in their __init__(). However only three Writer
  subclasses need the flag, and other subclasses don't need it. So this
  CL avoids to add new argument to Writer __init__(), and we introduced
  a static class member.

Bug: 760462
Change-Id: I1ce6c52b433fe0109f28c7388bab2f4b80371c6b
Reviewed-on: https://chromium-review.googlesource.com/664326
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501757}
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/build/scripts/json5_generator.py
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/build/scripts/make_event_factory.py
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/build/scripts/make_internal_runtime_flags.py
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/build/scripts/make_internal_settings.py
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/build/scripts/templates/InternalSettingsGenerated.cpp.tmpl
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/ee5cf70eee89de0874db5fd7d6e78b0652116b94/third_party/WebKit/Source/core/core_idl_files.gni

Project Member

Comment 12 by bugdroid1@chromium.org, Sep 13 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/a9b51b33da012d575b69c1d535c85dd68a76c8ad

commit a9b51b33da012d575b69c1d535c85dd68a76c8ad
Author: Kent Tamura <tkent@chromium.org>
Date: Wed Sep 13 22:34:36 2017

Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*

This CL simplifies bindings code a little bit.

This CL has no behavior changes.

TBR=nainar@chromium.org

Bug: 760462
Change-Id: I68a2045c8c99c261a993fbbad26cc0c893150d6b
Reviewed-on: https://chromium-review.googlesource.com/664165
Reviewed-by: nainar <nainar@chromium.org>
Reviewed-by: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501775}
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/core/v8/V8IdleTaskRunner.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueDeserializer.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValueSerializerForModulesTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestConstants.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/core/css/properties/templates/CSSPropertyAPISubclass.h.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/make_runtime_features.py
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.cpp.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.h.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/EventFactory.cpp.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/InternalRuntimeFlags.h.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/OriginTrials.cpp.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
[rename] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/runtime_enabled_features.cc.tmpl
[rename] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/build/scripts/templates/runtime_enabled_features.h.tmpl
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/CoreInitializer.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/Animation.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/DocumentTimeline.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/EffectStack.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/ElementAnimation.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/InterpolationEffect.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/CSSProperty.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/CSSSelector.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/MediaQueryExp.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/OffscreenFontSelector.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/RuleSet.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/SelectorChecker.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/parser/CSSPropertyParserTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignOrJustifyContent.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignSelf.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontSizeAdjust.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontVariationSettings.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoFlow.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoLine.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridLine.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateAreas.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateLine.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIImageOrientation.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifyItems.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifySelf.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIRotate.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIScale.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationColor.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationSkip.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextIndent.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextUnderlinePosition.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITouchAction.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyAnimationTimingFunctionUtils.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyBackgroundUtils.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyGridUtils.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSPropertyOffsetPathUtils.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGrid.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridArea.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridGap.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIOffset.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceContent.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceItems.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceSelf.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPITextDecoration.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/AccessibleNode.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/AccessibleNodeList.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/DocumentInit.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/SandboxFlags.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/ScriptRunner.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/dom/SecurityContext.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/editing/SelectionController.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallback.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallbackTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/LocalFrameClientImpl.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebDevToolsAgentImpl.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebDocumentTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebFrameTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebInputElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebPluginContainerImpl.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebSharedWorkerImpl.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/Deprecation.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/FrameTestHelpers.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/LocalFrame.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/LocalFrameView.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/LocalFrameViewTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/Settings.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLMediaElementEventListenersTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLMetaElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/ImageData.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/RelList.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/forms/ExternalDateTimeChooser.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/forms/FileInputType.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/media/AutoplayPolicy.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/media/MediaCustomControlsFullscreenDetectorTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/input/EventHandler.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/input/ScrollManager.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/inspector/DevToolsEmulator.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutView.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/LayoutView.h
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/ng/ng_block_child_iterator_test.cc
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/layout/ng/ng_block_node.cc
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/loader/BaseFetchContextTest.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/loader/MixedContentChecker.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/loader/ThreadableLoader.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/loader/WorkerFetchContext.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKit/Source/core/loader/resource/ImageResource.cpp
[modify] https://crrev.com/a9b51b33da012d575b69c1d535c85dd68a76c8ad/third_party/WebKi
Project Member

Comment 13 by bugdroid1@chromium.org, Sep 13 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/6c2ec121af8f2abec744903c6bbd00c994a31f20

commit 6c2ec121af8f2abec744903c6bbd00c994a31f20
Author: Xiaohan Wang <xhwang@chromium.org>
Date: Wed Sep 13 23:02:54 2017

Revert "Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*"

This reverts commit a9b51b33da012d575b69c1d535c85dd68a76c8ad.

Reason for revert: breaks Linux bot. Seems like some files are missing. Sorry about that.

https://build.chromium.org/p/chromium/builders/Linux%20x64/builds/48810

Original change's description:
> Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*
> 
> This CL simplifies bindings code a little bit.
> 
> This CL has no behavior changes.
> 
> TBR=nainar@chromium.org
> 
> Bug: 760462
> Change-Id: I68a2045c8c99c261a993fbbad26cc0c893150d6b
> Reviewed-on: https://chromium-review.googlesource.com/664165
> Reviewed-by: nainar <nainar@chromium.org>
> Reviewed-by: Kent Tamura <tkent@chromium.org>
> Reviewed-by: Kentaro Hara <haraken@chromium.org>
> Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
> Commit-Queue: Kent Tamura <tkent@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#501775}

TBR=peria@chromium.org,haraken@chromium.org,tkent@chromium.org,nainar@chromium.org

Change-Id: I965877a65eb80218e5172f3eb5c45f530482114b
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 760462
Reviewed-on: https://chromium-review.googlesource.com/666179
Reviewed-by: Xiaohan Wang <xhwang@chromium.org>
Commit-Queue: Xiaohan Wang <xhwang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501782}
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/core/v8/V8IdleTaskRunner.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueDeserializer.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValueSerializerForModulesTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestConstants.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/core/css/properties/templates/CSSPropertyAPISubclass.h.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/make_runtime_features.py
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.cpp.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.h.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/EventFactory.cpp.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/InternalRuntimeFlags.h.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/OriginTrials.cpp.tmpl
[rename] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl
[rename] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/CoreInitializer.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/Animation.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/DocumentTimeline.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/EffectStack.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/ElementAnimation.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/InterpolationEffect.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/CSSProperty.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/CSSSelector.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/MediaQueryExp.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/OffscreenFontSelector.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/RuleSet.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/SelectorChecker.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/parser/CSSPropertyParserTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignOrJustifyContent.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignSelf.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontSizeAdjust.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontVariationSettings.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoFlow.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoLine.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridLine.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateAreas.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateLine.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIImageOrientation.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifyItems.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifySelf.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIRotate.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIScale.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationColor.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationSkip.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextIndent.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextUnderlinePosition.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITouchAction.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyAnimationTimingFunctionUtils.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyBackgroundUtils.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyGridUtils.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSPropertyOffsetPathUtils.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGrid.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridArea.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridGap.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIOffset.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceContent.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceItems.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceSelf.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPITextDecoration.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/AccessibleNode.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/AccessibleNodeList.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/DocumentInit.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/SandboxFlags.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/ScriptRunner.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/dom/SecurityContext.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/editing/SelectionController.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallback.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallbackTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/LocalFrameClientImpl.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebDevToolsAgentImpl.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebDocumentTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebFrameTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebInputElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebPluginContainerImpl.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebSharedWorkerImpl.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/Deprecation.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/FrameTestHelpers.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/LocalFrame.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/LocalFrameView.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/LocalFrameViewTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/Settings.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLMediaElementEventListenersTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLMetaElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/ImageData.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/RelList.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/forms/ExternalDateTimeChooser.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/forms/FileInputType.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/media/AutoplayPolicy.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/media/MediaCustomControlsFullscreenDetectorTest.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/input/EventHandler.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/input/ScrollManager.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/inspector/DevToolsEmulator.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutView.cpp
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/LayoutView.h
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/ng/ng_block_child_iterator_test.cc
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
[modify] https://crrev.com/6c2ec121af8f2abec744903c6bbd00c994a31f20/third_party/WebKit/So
Project Member

Comment 14 by bugdroid1@chromium.org, Sep 14 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/bcb168f2a2a46ef693675f7964a7e917077384ce

commit bcb168f2a2a46ef693675f7964a7e917077384ce
Author: Kent Tamura <tkent@chromium.org>
Date: Thu Sep 14 04:24:06 2017

Reland "Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*"

This is a reland of a9b51b33da012d575b69c1d535c85dd68a76c8ad
Original change's description:
> Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*
> 
> This CL simplifies bindings code a little bit.
> 
> This CL has no behavior changes.
> 
> TBR=nainar@chromium.org
> 
> Bug: 760462
> Change-Id: I68a2045c8c99c261a993fbbad26cc0c893150d6b
> Reviewed-on: https://chromium-review.googlesource.com/664165
> Reviewed-by: nainar <nainar@chromium.org>
> Reviewed-by: Kent Tamura <tkent@chromium.org>
> Reviewed-by: Kentaro Hara <haraken@chromium.org>
> Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
> Commit-Queue: Kent Tamura <tkent@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#501775}

Difference from the original CL:
* Rename RuntimeEnabeldFeatures.h in ScrollbarThemeAura.cpp

TBR=nainar@chromium.org

Bug: 760462
Change-Id: I457d77aed195564355e012b196974ecb416c94e6
Reviewed-on: https://chromium-review.googlesource.com/666357
Reviewed-by: Kent Tamura <tkent@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Reviewed-by: nainar <nainar@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501867}
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/core/v8/V8IdleTaskRunner.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueDeserializer.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValueSerializerForModulesTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestConstants.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/core/css/properties/templates/CSSPropertyAPISubclass.h.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/make_runtime_features.py
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.cpp.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.h.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/EventFactory.cpp.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/InternalRuntimeFlags.h.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/OriginTrials.cpp.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
[rename] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/runtime_enabled_features.cc.tmpl
[rename] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/build/scripts/templates/runtime_enabled_features.h.tmpl
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/CoreInitializer.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/Animation.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/DocumentTimeline.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/EffectStack.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/ElementAnimation.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/InterpolationEffect.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/CSSProperty.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/CSSSelector.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/MediaQueryExp.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/OffscreenFontSelector.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/RuleSet.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/SelectorChecker.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/parser/CSSPropertyParserTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignOrJustifyContent.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignSelf.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontSizeAdjust.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontVariationSettings.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoFlow.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoLine.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridLine.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateAreas.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateLine.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIImageOrientation.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifyItems.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifySelf.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIRotate.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIScale.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationColor.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationSkip.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextIndent.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextUnderlinePosition.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITouchAction.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyAnimationTimingFunctionUtils.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyBackgroundUtils.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyGridUtils.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSPropertyOffsetPathUtils.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGrid.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridArea.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridGap.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIOffset.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceContent.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceItems.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceSelf.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPITextDecoration.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/AccessibleNode.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/AccessibleNodeList.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/DocumentInit.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/SandboxFlags.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/ScriptRunner.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/dom/SecurityContext.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/editing/SelectionController.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallback.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallbackTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/LocalFrameClientImpl.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebDevToolsAgentImpl.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebDocumentTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebFrameTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebInputElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebPluginContainerImpl.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebSharedWorkerImpl.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/Deprecation.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/FrameTestHelpers.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/LocalFrame.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/LocalFrameView.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/LocalFrameViewTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/Settings.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLMediaElementEventListenersTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLMetaElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/ImageData.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/RelList.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/forms/ExternalDateTimeChooser.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/forms/FileInputType.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/media/AutoplayPolicy.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/media/MediaCustomControlsFullscreenDetectorTest.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/input/EventHandler.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/input/ScrollManager.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/inspector/DevToolsEmulator.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutView.cpp
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/LayoutView.h
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/ng/ng_block_child_iterator_test.cc
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e917077384ce/third_party/WebKit/Source/core/layout/ng/ng_block_node.cc
[modify] https://crrev.com/bcb168f2a2a46ef693675f7964a7e91
Project Member

Comment 15 by bugdroid1@chromium.org, Sep 14 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec

commit d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec
Author: Kunihiko Sakamoto <ksakamoto@chromium.org>
Date: Thu Sep 14 05:30:41 2017

Revert "Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*"

This reverts commit a9b51b33da012d575b69c1d535c85dd68a76c8ad.

Reason for revert: <INSERT REASONING HERE>

Original change's description:
> Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*
> 
> This CL simplifies bindings code a little bit.
> 
> This CL has no behavior changes.
> 
> TBR=nainar@chromium.org
> 
> Bug: 760462
> Change-Id: I68a2045c8c99c261a993fbbad26cc0c893150d6b
> Reviewed-on: https://chromium-review.googlesource.com/664165
> Reviewed-by: nainar <nainar@chromium.org>
> Reviewed-by: Kent Tamura <tkent@chromium.org>
> Reviewed-by: Kentaro Hara <haraken@chromium.org>
> Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
> Commit-Queue: Kent Tamura <tkent@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#501775}

TBR=peria@chromium.org,haraken@chromium.org,tkent@chromium.org,nainar@chromium.org

Change-Id: I1e4f0fe802c8746b70f84497d226056bc7f6081e
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 760462
Reviewed-on: https://chromium-review.googlesource.com/665781
Reviewed-by: Kunihiko Sakamoto <ksakamoto@chromium.org>
Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501875}
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/core/v8/V8IdleTaskRunner.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueDeserializer.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValueSerializerForModulesTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestConstants.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/core/css/properties/templates/CSSPropertyAPISubclass.h.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/make_runtime_features.py
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.cpp.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.h.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/EventFactory.cpp.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/InternalRuntimeFlags.h.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/OriginTrials.cpp.tmpl
[rename] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/RuntimeEnabledFeatures.cpp.tmpl
[rename] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/RuntimeEnabledFeatures.h.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/CoreInitializer.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/Animation.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/DocumentTimeline.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/EffectStack.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/ElementAnimation.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/InterpolationEffect.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/CSSProperty.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/CSSSelector.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/MediaQueryExp.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/OffscreenFontSelector.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/RuleSet.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/SelectorChecker.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/parser/CSSPropertyParserTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignOrJustifyContent.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignSelf.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontSizeAdjust.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontVariationSettings.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoFlow.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoLine.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridLine.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateAreas.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateLine.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIImageOrientation.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifyItems.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifySelf.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIRotate.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIScale.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationColor.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationSkip.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextIndent.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextUnderlinePosition.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITouchAction.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyAnimationTimingFunctionUtils.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyBackgroundUtils.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyGridUtils.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSPropertyOffsetPathUtils.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGrid.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridArea.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridGap.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIOffset.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceContent.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceItems.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceSelf.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPITextDecoration.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/AccessibleNode.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/AccessibleNodeList.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/DocumentInit.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/SandboxFlags.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/ScriptRunner.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/dom/SecurityContext.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/editing/SelectionController.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallback.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallbackTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/LocalFrameClientImpl.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebDevToolsAgentImpl.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebDocumentTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebFrameTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebInputElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebPluginContainerImpl.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebSharedWorkerImpl.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/Deprecation.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/FrameTestHelpers.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/LocalFrame.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/LocalFrameView.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/LocalFrameViewTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/Settings.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLMediaElementEventListenersTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLMetaElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/ImageData.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/RelList.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/forms/ExternalDateTimeChooser.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/forms/FileInputType.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/media/AutoplayPolicy.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/media/MediaCustomControlsFullscreenDetectorTest.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/input/EventHandler.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/input/ScrollManager.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/inspector/DevToolsEmulator.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutView.cpp
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/LayoutView.h
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/ng/inline/ng_inline_node.cc
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/ng/layout_ng_block_flow.cc
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/ng/ng_block_child_iterator_test.cc
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec/third_party/WebKit/Source/core/layout/ng/ng_block_node.cc
[modify] https://crrev.com/d3df2fe36c6b05bf8ceb5cf63450eb49
Project Member

Comment 16 by bugdroid1@chromium.org, Sep 14 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/ef0c06534a44055c1dc22c81822970d46fbdc31a

commit ef0c06534a44055c1dc22c81822970d46fbdc31a
Author: Kunihiko Sakamoto <ksakamoto@chromium.org>
Date: Thu Sep 14 05:51:18 2017

Revert "Revert "Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*""

This reverts commit d3df2fe36c6b05bf8ceb5cf63450eb490495c6ec.

Reason for revert: Reverted wrong CL.
We should have reverted https://chromium-review.googlesource.com/666357, not https://chromium-review.googlesource.com/664165.

Original change's description:
> Revert "Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*"
> 
> This reverts commit a9b51b33da012d575b69c1d535c85dd68a76c8ad.
> 
> Reason for revert: <INSERT REASONING HERE>
> 
> Original change's description:
> > Rename RuntimeEnabledFeatures.* to runtime_enabled_features.*
> > 
> > This CL simplifies bindings code a little bit.
> > 
> > This CL has no behavior changes.
> > 
> > TBR=nainar@chromium.org
> > 
> > Bug: 760462
> > Change-Id: I68a2045c8c99c261a993fbbad26cc0c893150d6b
> > Reviewed-on: https://chromium-review.googlesource.com/664165
> > Reviewed-by: nainar <nainar@chromium.org>
> > Reviewed-by: Kent Tamura <tkent@chromium.org>
> > Reviewed-by: Kentaro Hara <haraken@chromium.org>
> > Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
> > Commit-Queue: Kent Tamura <tkent@chromium.org>
> > Cr-Commit-Position: refs/heads/master@{#501775}
> 
> TBR=peria@chromium.org,haraken@chromium.org,tkent@chromium.org,nainar@chromium.org
> 
> Change-Id: I1e4f0fe802c8746b70f84497d226056bc7f6081e
> No-Presubmit: true
> No-Tree-Checks: true
> No-Try: true
> Bug: 760462
> Reviewed-on: https://chromium-review.googlesource.com/665781
> Reviewed-by: Kunihiko Sakamoto <ksakamoto@chromium.org>
> Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#501875}

TBR=peria@chromium.org,haraken@chromium.org,ksakamoto@chromium.org,tkent@chromium.org,nainar@chromium.org

Change-Id: Iadd4b7bdd0a3b28441482326fe053714d0ecd45b
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 760462
Reviewed-on: https://chromium-review.googlesource.com/666599
Reviewed-by: Kunihiko Sakamoto <ksakamoto@chromium.org>
Commit-Queue: Kunihiko Sakamoto <ksakamoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501878}
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/core/v8/V8GCController.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/core/v8/V8IdleTaskRunner.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueDeserializer.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializer.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/core/v8/serialization/V8ScriptValueSerializerTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/modules/v8/V8BindingForModules.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/modules/v8/serialization/V8ScriptValueSerializerForModulesTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/scripts/v8_dictionary.py
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/scripts/v8_utilities.py
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestConstants.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestDictionary.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterface2.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceOriginTrialEnabled.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceSecureContext.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/core/V8TestObject.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface2Partial.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterface5.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/bindings/tests/results/modules/V8TestInterfacePartial.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/core/css/properties/templates/CSSPropertyAPISubclass.h.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/make_runtime_features.py
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/ElementFactory.cpp.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.cpp.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/ElementTypeHelpers.h.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/EventFactory.cpp.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/InternalRuntimeFlags.h.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/OriginTrials.cpp.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/StylePropertyShorthand.cpp.tmpl
[rename] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/runtime_enabled_features.cc.tmpl
[rename] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/build/scripts/templates/runtime_enabled_features.h.tmpl
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/CoreInitializer.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/Animation.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/DocumentTimeline.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/EffectStack.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/ElementAnimation.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/InterpolationEffect.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/animation/StringKeyframe.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/CSSFontFaceSrcValue.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/CSSFontSelector.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/CSSProperty.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/CSSSelector.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/CSSTimingFunctionValue.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/FontFace.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/MediaQueryEvaluator.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/MediaQueryExp.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/OffscreenFontSelector.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/PropertySetCSSStyleDeclaration.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/RemoteFontFaceSource.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/RuleSet.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/SelectorChecker.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/StylePropertySerializer.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/StylePropertySet.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/parser/CSSParserFastPaths.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/parser/CSSPropertyParserHelpers.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/parser/CSSPropertyParserTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/parser/CSSSelectorParser.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignItems.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignOrJustifyContent.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAlignSelf.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontSizeAdjust.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIFontVariationSettings.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoFlow.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridAutoLine.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridLine.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateAreas.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIGridTemplateLine.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIImageOrientation.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifyItems.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIJustifySelf.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIRotate.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIScale.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationColor.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextDecorationSkip.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextIndent.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITextUnderlinePosition.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPITouchAction.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyAnimationTimingFunctionUtils.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyBackgroundUtils.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyGridUtils.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSPropertyOffsetPathUtils.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGrid.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridArea.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIGridGap.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIOffset.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceContent.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceItems.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPIPlaceSelf.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/properties/CSSShorthandPropertyAPITextDecoration.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/css/resolver/StyleResolver.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/AccessibleNode.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/AccessibleNodeList.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/ContextFeatures.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/Document.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/DocumentInit.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/DocumentLifecycle.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/Element.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/Node.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/SandboxFlags.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/ScriptRunner.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/dom/SecurityContext.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/editing/SelectionController.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallback.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/editing/spellcheck/IdleSpellCheckCallbackTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/LocalFrameClientImpl.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebDevToolsAgentImpl.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebDocumentTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebFrameTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebInputElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebPluginContainerImpl.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebSharedWorkerImpl.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/exported/WebViewImpl.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/Deprecation.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/FrameTestHelpers.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/LocalFrameView.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/LocalFrameView.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/LocalFrameViewTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/Settings.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/csp/CSPDirectiveList.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicy.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/frame/csp/ContentSecurityPolicyTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLCanvasElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLContentElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLIFrameElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLMediaElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLMediaElementEventListenersTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLMetaElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/HTMLVideoElement.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/ImageData.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/LinkRelAttributeTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/RelList.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/canvas/CanvasRenderingContext.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/forms/ColorInputType.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/forms/ExternalDateTimeChooser.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/forms/FileInputType.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/forms/InputType.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/forms/MultipleFieldsTemporalInputTypeView.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/media/AutoplayPolicy.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/media/MediaCustomControlsFullscreenDetectorTest.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/parser/HTMLStackItem.h
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/parser/TokenizedChunkQueue.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/track/vtt/VTTCue.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/html/track/vtt/VTTParser.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/input/EventHandler.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/input/ScrollManager.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/inspector/DevToolsEmulator.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutMultiColumnSet.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutTheme.cpp
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutThemeMac.mm
[modify] https://crrev.com/ef0c06534a44055c1dc22c81822970d46fbdc31a/third_party/WebKit/Source/core/layout/LayoutV
Project Member

Comment 17 by bugdroid1@chromium.org, Sep 14 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/72ff7ee7b8906addf6424141ef95ad152926fc0e

commit 72ff7ee7b8906addf6424141ef95ad152926fc0e
Author: Kent Tamura <tkent@chromium.org>
Date: Thu Sep 14 05:58:40 2017

Fix Windows build after RuntimeEnabledFeatures.* rename.

TBR=ksakamoto@chromium.org

Bug: 760462
Change-Id: I51940dc671694774390828c92c2a3becbd9a6b28
Reviewed-on: https://chromium-review.googlesource.com/666400
Reviewed-by: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501879}
[modify] https://crrev.com/72ff7ee7b8906addf6424141ef95ad152926fc0e/third_party/WebKit/Source/platform/fonts/win/FontCacheSkiaWin.cpp

Project Member

Comment 18 by bugdroid1@chromium.org, Sep 14 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/a5d778105880fed3edc3f2691bf0e3c1705f1229

commit a5d778105880fed3edc3f2691bf0e3c1705f1229
Author: Kent Tamura <tkent@chromium.org>
Date: Thu Sep 14 07:50:12 2017

bindings: Fix various build issues for the Great Blink mv.

* idl_compiler and idl_impl templates:
  --snake-case-generated-files flag should not be the last argument.
  It was recognized as one of input files.

* idl_impl template:
  Generated file names should be *.cc.

* core/BUILD.gn:
  snake_case for InternalSettingsGenerated.*

* modules/BUILD.gn:
  snake_case for V8InternalsPartial.* and V8WorkerInternalsPartial.*

Bug: 760462
Change-Id: I2ba3e9e96743383976e25794b85a6399633b10e8
Reviewed-on: https://chromium-review.googlesource.com/666241
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#501894}
[modify] https://crrev.com/a5d778105880fed3edc3f2691bf0e3c1705f1229/third_party/WebKit/Source/bindings/scripts/scripts.gni
[modify] https://crrev.com/a5d778105880fed3edc3f2691bf0e3c1705f1229/third_party/WebKit/Source/core/BUILD.gn
[modify] https://crrev.com/a5d778105880fed3edc3f2691bf0e3c1705f1229/third_party/WebKit/Source/modules/BUILD.gn

Project Member

Comment 19 by bugdroid1@chromium.org, Sep 15 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/6f5fabc5249cf4e6fcc2e502232561fc01e5e190

commit 6f5fabc5249cf4e6fcc2e502232561fc01e5e190
Author: Kent Tamura <tkent@chromium.org>
Date: Fri Sep 15 07:29:17 2017

bindings: Make [ImplementedAs] mandatory for partial interface.

Partial interfaces had an implicit rule that an IDL file name was used
to find a static-only C++ class name implementing the interface. It
won't work if we rename IDL files to snake_case because C++ class names
are still CamelCase.

In general IDL filename should not affect generated code. However IDL
content has no information about implementation C++ class in this
case. So we need to specify ImplementedAs.

Bug: 760462
Change-Id: I791b73bbaf6605e4b87732ba3ce8163d1fdab2b1
Reviewed-on: https://chromium-review.googlesource.com/666948
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Cr-Commit-Position: refs/heads/master@{#502182}
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/scripts/interface_dependency_resolver.py
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/tests/idls/core/TestInterfacePartial.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface2Partial.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/tests/idls/modules/TestInterface2Partial2.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/bindings/tests/idls/modules/TestInterfacePartial4.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/animation/DocumentAnimation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/animation/ElementAnimation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/css/PropertyRegistration.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/css/cssom/CSSUnitValues.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/css/cssom/WindowGetComputedStyle.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/events/NavigatorEvents.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/fileapi/URLFileAPI.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/frame/NavigatorClipboard.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/fullscreen/DocumentFullscreen.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/fullscreen/ElementFullscreen.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/timing/WorkerGlobalScopePerformance.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/core/xml/DocumentXPathEvaluator.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/accessibility/testing/InternalsAccessibility.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/audio_output_devices/HTMLMediaElementAudioOutputDevice.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/background_fetch/ServiceWorkerGlobalScopeBackgroundFetch.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/background_fetch/ServiceWorkerRegistrationBackgroundFetch.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/background_sync/ServiceWorkerGlobalScopeSync.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/background_sync/ServiceWorkerRegistrationSync.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/battery/NavigatorBattery.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/beacon/NavigatorBeacon.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/bluetooth/NavigatorBluetooth.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/budget/NavigatorBudget.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/budget/WorkerNavigatorBudget.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/canvas/HTMLCanvasElementModule.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/compositorworker/WindowAnimationWorklet.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/credentialmanager/NavigatorCredentials.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/crypto/WorkerGlobalScopeCrypto.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/csspaint/CSSPaintWorklet.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/donottrack/NavigatorDoNotTrack.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/encryptedmedia/HTMLMediaElementEncryptedMedia.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/encryptedmedia/MediaKeysGetStatusForPolicy.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/encryptedmedia/NavigatorRequestMediaKeySystemAccess.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/fetch/testing/InternalsFetch.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/fetch/testing/WorkerInternalsFetch.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/filesystem/DataTransferItemFileSystem.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/filesystem/DevToolsHostFileSystem.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/filesystem/HTMLInputElementFileSystem.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/gamepad/NavigatorGamepad.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/geolocation/NavigatorGeolocation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/installedapp/NavigatorInstalledApp.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/keyboard_lock/NavigatorKeyboardLock.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/media_capabilities/NavigatorMediaCapabilities.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediacapturefromelement/HTMLCanvasElementCapture.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediacapturefromelement/HTMLMediaElementCapture.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediasession/NavigatorMediaSession.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediasource/HTMLVideoElementMediaSource.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediasource/URLMediaSource.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediastream/MediaStreamTrackContentHint.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediastream/NavigatorMediaStream.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediastream/NavigatorUserMedia.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediastream/URLMediaStream.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/mediastream/testing/InternalsMediaStream.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/navigatorcontentutils/NavigatorContentUtils.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/navigatorcontentutils/testing/InternalsNavigatorContentUtils.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/netinfo/NavigatorNetworkInformation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/netinfo/WorkerNavigatorNetworkInformation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/nfc/NavigatorNFC.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/notifications/ServiceWorkerGlobalScopeNotifications.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/notifications/ServiceWorkerRegistrationNotifications.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/offscreencanvas/OffscreenCanvasModules.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/payments/HTMLIFrameElementPayments.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerGlobalScope.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/payments/PaymentAppServiceWorkerRegistration.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/peerconnection/testing/InternalsRTCCertificate.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/permissions/NavigatorPermissions.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/permissions/WorkerNavigatorPermissions.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/plugins/NavigatorPlugins.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/presentation/NavigatorPresentation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/push_messaging/ServiceWorkerGlobalScopePush.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/push_messaging/ServiceWorkerRegistrationPush.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/quota/NavigatorStorageQuota.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/quota/WorkerNavigatorStorageQuota.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/remoteplayback/HTMLMediaElementRemotePlayback.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/screen_orientation/ScreenScreenOrientation.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/serviceworkers/NavigatorServiceWorker.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/serviceworkers/testing/InternalsServiceWorker.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/speech/testing/InternalsSpeechSynthesis.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/srcobject/HTMLMediaElementSrcObject.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/vibration/NavigatorVibration.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/vibration/testing/InternalsVibration.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/vr/NavigatorVR.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/wake_lock/ScreenWakeLock.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/webaudio/WindowAudioWorklet.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/webaudio/testing/InternalsWebAudio.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/webmidi/NavigatorWebMIDI.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/webshare/NavigatorShare.idl
[modify] https://crrev.com/6f5fabc5249cf4e6fcc2e502232561fc01e5e190/third_party/WebKit/Source/modules/webusb/NavigatorUSB.idl

Project Member

Comment 21 by bugdroid1@chromium.org, Sep 15 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/bb87bf3a9a80125876e8f0199a55b49320a985e4

commit bb87bf3a9a80125876e8f0199a55b49320a985e4
Author: Kent Tamura <tkent@chromium.org>
Date: Fri Sep 15 10:05:32 2017

Fixes small issues in bindings for the Great Blink mv.

* normalize_and_sort_includes() should not apply snake_case to
  HTMLNames.h and SVGNames.h. They are machine-generated headers, and
  move_blink_source.py won't rename them.

* CodeGeneratorUnionType and CodeGeneratorCallbackFunction should apply
  normalize_and_sort_includes() to cpp_includes.
  CodeGenerator.render_template() applies it to cpp_includes, but
  CodeGeneratorUnionType and CodeGeneratorCallbackFunction don't use it.

* Fix --snake-case-generated-files position in scripts.gni.

Bug: 760462
Change-Id: I81128079f35ae5985aff0eaa3d3e531cb51f6137
Reviewed-on: https://chromium-review.googlesource.com/668298
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Cr-Commit-Position: refs/heads/master@{#502219}
[modify] https://crrev.com/bb87bf3a9a80125876e8f0199a55b49320a985e4/third_party/WebKit/Source/bindings/scripts/code_generator.py
[modify] https://crrev.com/bb87bf3a9a80125876e8f0199a55b49320a985e4/third_party/WebKit/Source/bindings/scripts/code_generator_v8.py
[modify] https://crrev.com/bb87bf3a9a80125876e8f0199a55b49320a985e4/third_party/WebKit/Source/bindings/scripts/scripts.gni

Comment 22 by peria@chromium.org, Sep 18 2017

Cc: peria@chromium.org
Owner: tkent@chromium.org
Project Member

Comment 23 by bugdroid1@chromium.org, Sep 18 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/7554a322c844340218d25b5c28c4ea88fdcbaadf

commit 7554a322c844340218d25b5c28c4ea88fdcbaadf
Author: Kent Tamura <tkent@chromium.org>
Date: Mon Sep 18 18:06:19 2017

Make blink::GlobalEventHandlers a static-only class, not a namespace

In general, we should not define non-member static functions in headers.
This CL helps to remove 'unused static function' compiler warnings.

Bug: 760462
Change-Id: I0de0ca02aa3be58a5e514e30cd30835423055a58
Reviewed-on: https://chromium-review.googlesource.com/670204
Reviewed-by: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kentaro Hara <haraken@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#502610}
[modify] https://crrev.com/7554a322c844340218d25b5c28c4ea88fdcbaadf/third_party/WebKit/Source/bindings/scripts/v8_union.py
[modify] https://crrev.com/7554a322c844340218d25b5c28c4ea88fdcbaadf/third_party/WebKit/Source/core/dom/GlobalEventHandlers.h

Project Member

Comment 24 by bugdroid1@chromium.org, Sep 19 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/4eec6defcff8282d54b9f86872063b857488a576

commit 4eec6defcff8282d54b9f86872063b857488a576
Author: Kent Tamura <tkent@chromium.org>
Date: Tue Sep 19 12:06:12 2017

bindings: Fix generate_init_partial_interfaces.py for snake_case IDL filenames

|basename| is a base of the name 'V8*Partial'. So it's an interface
name, not a file basename.

Bug: 760462
Change-Id: Ic04bc604aea37a33d8c78fa4cc505fe3f30b120e
Reviewed-on: https://chromium-review.googlesource.com/672029
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#502827}
[modify] https://crrev.com/4eec6defcff8282d54b9f86872063b857488a576/third_party/WebKit/Source/bindings/scripts/generate_init_partial_interfaces.py

Project Member

Comment 25 by bugdroid1@chromium.org, Sep 19 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/4bafa509eae1b67c6655bc9ace292d0953225f99

commit 4bafa509eae1b67c6655bc9ace292d0953225f99
Author: Kent Tamura <tkent@chromium.org>
Date: Tue Sep 19 21:40:52 2017

bindings: Fix generate_v8_context_snapshot_external_references.py for the great Blink mv.

- Pass -snake-case-generated-files flag if snake_case_source_files
- Apply to_snake_case to pre-defined INCLUDES too.

Bug: 760462
Change-Id: Iacb84b7fb895160cf4791c4570c31d1bd0c62cbc
Reviewed-on: https://chromium-review.googlesource.com/672027
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#502960}
[modify] https://crrev.com/4bafa509eae1b67c6655bc9ace292d0953225f99/third_party/WebKit/Source/bindings/modules/v8/BUILD.gn
[modify] https://crrev.com/4bafa509eae1b67c6655bc9ace292d0953225f99/third_party/WebKit/Source/bindings/scripts/generate_v8_context_snapshot_external_references.py

Project Member

Comment 26 by bugdroid1@chromium.org, Sep 20 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/84fe8c1546be084e571c4a9fd36b4a2f75a6111e

commit 84fe8c1546be084e571c4a9fd36b4a2f75a6111e
Author: Kent Tamura <tkent@chromium.org>
Date: Wed Sep 20 04:47:50 2017

generate_v8_context_snapshot_external_references.py: Do not get interface names from IDL file names.

Bug: 760462
Change-Id: I73b0979d697f38711e4b0367f5b22b53b21bbd78
Reviewed-on: https://chromium-review.googlesource.com/674543
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Commit-Queue: Kent Tamura <tkent@chromium.org>
Cr-Commit-Position: refs/heads/master@{#503053}
[modify] https://crrev.com/84fe8c1546be084e571c4a9fd36b4a2f75a6111e/third_party/WebKit/Source/bindings/scripts/generate_v8_context_snapshot_external_references.py

Comment 27 by tkent@chromium.org, Sep 20 2017

Status: Started (was: Available)
I think we finished the preparation in bindings/scripts/.

Tools/Scripts/webkitpy/bindings/bindings_tests.py doesn't work. I'll take a look at it.

Project Member

Comment 28 by bugdroid1@chromium.org, Sep 25 2017

The following revision refers to this bug:
  https://chromium.googlesource.com/chromium/src.git/+/cc80abcfd3c7d157277dc6b658a2ffa73efee455

commit cc80abcfd3c7d157277dc6b658a2ffa73efee455
Author: Kent Tamura <tkent@chromium.org>
Date: Mon Sep 25 03:42:49 2017

bindings: Make run-bindings-tests workable after the Great Blink mv.

- Detect snake_case flag at runtime.
- Obtain definition_name from IDL content, not IDL filename
- collect_idls_into_json.py should use
  path_finder.add_bindings_scripts_dir_to_sys_path().

Bug: 760462
Change-Id: I932320ffa7d80528afd5c4777b686d765c16bb5f
Reviewed-on: https://chromium-review.googlesource.com/678456
Commit-Queue: Kent Tamura <tkent@chromium.org>
Reviewed-by: Kenichi Ishibashi <bashi@chromium.org>
Reviewed-by: Hitoshi Yoshida <peria@chromium.org>
Cr-Commit-Position: refs/heads/master@{#503975}
[modify] https://crrev.com/cc80abcfd3c7d157277dc6b658a2ffa73efee455/third_party/WebKit/Source/bindings/scripts/utilities.py
[modify] https://crrev.com/cc80abcfd3c7d157277dc6b658a2ffa73efee455/third_party/WebKit/Tools/Scripts/webkitpy/bindings/bindings_tests.py
[modify] https://crrev.com/cc80abcfd3c7d157277dc6b658a2ffa73efee455/third_party/WebKit/Tools/Scripts/webkitpy/bindings/collect_idls_into_json.py
[modify] https://crrev.com/cc80abcfd3c7d157277dc6b658a2ffa73efee455/third_party/WebKit/Tools/Scripts/webkitpy/common/path_finder.py

Comment 29 by tkent@chromium.org, Sep 25 2017

Status: Fixed (was: Started)

Comment 30 by tkent@chromium.org, Sep 26 2017

Blocking: -622551 768828

Sign in to add a comment