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

Side by Side Diff: Source/platform/blink_platform.gypi

Issue 1311923004: Rename FormData/FormDataBuilder to EncodedFormData/FormDataEncoder respectively. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update comments Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/modules/fetch/Response.cpp ('k') | Source/platform/exported/WebHTTPBody.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'includes': [ 2 'includes': [
3 'platform_generated.gypi', 3 'platform_generated.gypi',
4 ], 4 ],
5 'variables': { 5 'variables': {
6 'platform_files': [ 6 'platform_files': [
7 'AsyncFileSystemCallbacks.h', 7 'AsyncFileSystemCallbacks.h',
8 'CalculationValue.h', 8 'CalculationValue.h',
9 'CheckedInt.h', 9 'CheckedInt.h',
10 'Clock.cpp', 10 'Clock.cpp',
(...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after
761 'mhtml/ArchiveResourceCollection.cpp', 761 'mhtml/ArchiveResourceCollection.cpp',
762 'mhtml/ArchiveResourceCollection.h', 762 'mhtml/ArchiveResourceCollection.h',
763 'mhtml/MHTMLArchive.cpp', 763 'mhtml/MHTMLArchive.cpp',
764 'mhtml/MHTMLArchive.h', 764 'mhtml/MHTMLArchive.h',
765 'mhtml/MHTMLParser.cpp', 765 'mhtml/MHTMLParser.cpp',
766 'mhtml/MHTMLParser.h', 766 'mhtml/MHTMLParser.h',
767 'network/ContentSecurityPolicyParsers.cpp', 767 'network/ContentSecurityPolicyParsers.cpp',
768 'network/ContentSecurityPolicyParsers.h', 768 'network/ContentSecurityPolicyParsers.h',
769 'network/ContentSecurityPolicyResponseHeaders.cpp', 769 'network/ContentSecurityPolicyResponseHeaders.cpp',
770 'network/ContentSecurityPolicyResponseHeaders.h', 770 'network/ContentSecurityPolicyResponseHeaders.h',
771 'network/FormData.cpp', 771 'network/EncodedFormData.cpp',
772 'network/FormData.h', 772 'network/EncodedFormData.h',
773 'network/FormDataBuilder.cpp', 773 'network/FormDataEncoder.cpp',
774 'network/FormDataBuilder.h', 774 'network/FormDataEncoder.h',
775 'network/HTTPHeaderMap.cpp', 775 'network/HTTPHeaderMap.cpp',
776 'network/HTTPHeaderMap.h', 776 'network/HTTPHeaderMap.h',
777 'network/HTTPParsers.cpp', 777 'network/HTTPParsers.cpp',
778 'network/HTTPParsers.h', 778 'network/HTTPParsers.h',
779 'network/HTTPRequest.cpp', 779 'network/HTTPRequest.cpp',
780 'network/HTTPRequest.h', 780 'network/HTTPRequest.h',
781 'network/NetworkHints.cpp', 781 'network/NetworkHints.cpp',
782 'network/NetworkHints.h', 782 'network/NetworkHints.h',
783 'network/ParsedContentType.cpp', 783 'network/ParsedContentType.cpp',
784 'network/ParsedContentType.h', 784 'network/ParsedContentType.h',
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 'graphics/ThreadSafeDataTransportTest.cpp', 985 'graphics/ThreadSafeDataTransportTest.cpp',
986 'graphics/filters/FilterOperationsTest.cpp', 986 'graphics/filters/FilterOperationsTest.cpp',
987 'graphics/filters/ImageFilterBuilderTest.cpp', 987 'graphics/filters/ImageFilterBuilderTest.cpp',
988 'graphics/gpu/DrawingBufferTest.cpp', 988 'graphics/gpu/DrawingBufferTest.cpp',
989 'graphics/paint/DisplayItemPropertyTreeBuilderTest.cpp', 989 'graphics/paint/DisplayItemPropertyTreeBuilderTest.cpp',
990 'graphics/paint/DisplayItemListTest.cpp', 990 'graphics/paint/DisplayItemListTest.cpp',
991 'graphics/paint/DisplayItemTest.cpp', 991 'graphics/paint/DisplayItemTest.cpp',
992 'image-decoders/FastSharedBufferReaderTest.cpp', 992 'image-decoders/FastSharedBufferReaderTest.cpp',
993 'image-decoders/ImageDecoderTest.cpp', 993 'image-decoders/ImageDecoderTest.cpp',
994 'mac/VersionUtilMacTest.mm', 994 'mac/VersionUtilMacTest.mm',
995 'network/FormDataTest.cpp', 995 'network/EncodedFormDataTest.cpp',
996 'network/HTTPParsersTest.cpp', 996 'network/HTTPParsersTest.cpp',
997 'network/ResourceRequestTest.cpp', 997 'network/ResourceRequestTest.cpp',
998 'scheduler/CancellableTaskFactoryTest.cpp', 998 'scheduler/CancellableTaskFactoryTest.cpp',
999 'scroll/ScrollableAreaTest.cpp', 999 'scroll/ScrollableAreaTest.cpp',
1000 'testing/ArenaTestHelpers.h', 1000 'testing/ArenaTestHelpers.h',
1001 'testing/TreeTestHelpers.cpp', 1001 'testing/TreeTestHelpers.cpp',
1002 'testing/TreeTestHelpers.h', 1002 'testing/TreeTestHelpers.h',
1003 'text/BidiResolverTest.cpp', 1003 'text/BidiResolverTest.cpp',
1004 'text/DateTimeFormatTest.cpp', 1004 'text/DateTimeFormatTest.cpp',
1005 'text/SegmentedStringTest.cpp', 1005 'text/SegmentedStringTest.cpp',
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 ['os_posix==1 and OS!="mac"', 1065 ['os_posix==1 and OS!="mac"',
1066 { 1066 {
1067 'platform_test_files': [ 1067 'platform_test_files': [
1068 'text/LocaleICUTest.cpp', 1068 'text/LocaleICUTest.cpp',
1069 ], 1069 ],
1070 } 1070 }
1071 ], 1071 ],
1072 ], 1072 ],
1073 }, 1073 },
1074 } 1074 }
OLDNEW
« no previous file with comments | « Source/modules/fetch/Response.cpp ('k') | Source/platform/exported/WebHTTPBody.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698