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

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

Issue 1162443006: Credential Management: Rename 'LocalCredential' to 'PasswordCredential' (1/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@add-type
Patch Set: Test. Created 5 years, 6 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
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/platform/credentialmanager/PlatformCredential.h » ('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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 'clipboard/ClipboardMimeTypes.cpp', 249 'clipboard/ClipboardMimeTypes.cpp',
250 'clipboard/ClipboardMimeTypes.h', 250 'clipboard/ClipboardMimeTypes.h',
251 'clipboard/ClipboardUtilities.cpp', 251 'clipboard/ClipboardUtilities.cpp',
252 'clipboard/ClipboardUtilities.h', 252 'clipboard/ClipboardUtilities.h',
253 'clipboard/ClipboardUtilitiesPosix.cpp', 253 'clipboard/ClipboardUtilitiesPosix.cpp',
254 'clipboard/ClipboardUtilitiesWin.cpp', 254 'clipboard/ClipboardUtilitiesWin.cpp',
255 'credentialmanager/PlatformCredential.cpp', 255 'credentialmanager/PlatformCredential.cpp',
256 'credentialmanager/PlatformCredential.h', 256 'credentialmanager/PlatformCredential.h',
257 'credentialmanager/PlatformFederatedCredential.cpp', 257 'credentialmanager/PlatformFederatedCredential.cpp',
258 'credentialmanager/PlatformFederatedCredential.h', 258 'credentialmanager/PlatformFederatedCredential.h',
259 'credentialmanager/PlatformLocalCredential.cpp', 259 'credentialmanager/PlatformPasswordCredential.cpp',
260 'credentialmanager/PlatformLocalCredential.h', 260 'credentialmanager/PlatformPasswordCredential.h',
261 'exported/Platform.cpp', 261 'exported/Platform.cpp',
262 'exported/WebActiveGestureAnimation.cpp', 262 'exported/WebActiveGestureAnimation.cpp',
263 'exported/WebActiveGestureAnimation.h', 263 'exported/WebActiveGestureAnimation.h',
264 'exported/WebAudioBus.cpp', 264 'exported/WebAudioBus.cpp',
265 'exported/WebAudioDevice.cpp', 265 'exported/WebAudioDevice.cpp',
266 'exported/WebBlobData.cpp', 266 'exported/WebBlobData.cpp',
267 'exported/WebCompositorAnimationPlayerClient.cpp', 267 'exported/WebCompositorAnimationPlayerClient.cpp',
268 'exported/WebContentDecryptionModule.cpp', 268 'exported/WebContentDecryptionModule.cpp',
269 'exported/WebContentDecryptionModuleAccess.cpp', 269 'exported/WebContentDecryptionModuleAccess.cpp',
270 'exported/WebContentDecryptionModuleResult.cpp', 270 'exported/WebContentDecryptionModuleResult.cpp',
(...skipping 23 matching lines...) Expand all
294 'exported/WebLocalCredential.cpp', 294 'exported/WebLocalCredential.cpp',
295 'exported/WebMediaConstraints.cpp', 295 'exported/WebMediaConstraints.cpp',
296 'exported/WebMediaDeviceInfo.cpp', 296 'exported/WebMediaDeviceInfo.cpp',
297 'exported/WebMediaStream.cpp', 297 'exported/WebMediaStream.cpp',
298 'exported/WebMediaStreamSource.cpp', 298 'exported/WebMediaStreamSource.cpp',
299 'exported/WebMediaStreamTrack.cpp', 299 'exported/WebMediaStreamTrack.cpp',
300 'exported/WebMediaStreamTrackSourcesRequest.cpp', 300 'exported/WebMediaStreamTrackSourcesRequest.cpp',
301 'exported/WebMemoryAllocatorDump.cpp', 301 'exported/WebMemoryAllocatorDump.cpp',
302 'exported/WebMemoryDumpProvider.cpp', 302 'exported/WebMemoryDumpProvider.cpp',
303 'exported/WebMessagePortChannelClient.cpp', 303 'exported/WebMessagePortChannelClient.cpp',
304 'exported/WebPasswordCredential.cpp',
304 'exported/WebPrerender.cpp', 305 'exported/WebPrerender.cpp',
305 'exported/WebPrerenderingSupport.cpp', 306 'exported/WebPrerenderingSupport.cpp',
306 'exported/WebPresentationController.cpp', 307 'exported/WebPresentationController.cpp',
307 'exported/WebProcessMemoryDump.cpp', 308 'exported/WebProcessMemoryDump.cpp',
308 'exported/WebRTCConfiguration.cpp', 309 'exported/WebRTCConfiguration.cpp',
309 'exported/WebRTCICECandidate.cpp', 310 'exported/WebRTCICECandidate.cpp',
310 'exported/WebRTCOfferOptions.cpp', 311 'exported/WebRTCOfferOptions.cpp',
311 'exported/WebRTCSessionDescription.cpp', 312 'exported/WebRTCSessionDescription.cpp',
312 'exported/WebRTCSessionDescriptionRequest.cpp', 313 'exported/WebRTCSessionDescriptionRequest.cpp',
313 'exported/WebRTCStatsRequest.cpp', 314 'exported/WebRTCStatsRequest.cpp',
(...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after
1031 ['os_posix==1 and OS!="mac"', 1032 ['os_posix==1 and OS!="mac"',
1032 { 1033 {
1033 'platform_test_files': [ 1034 'platform_test_files': [
1034 'text/LocaleICUTest.cpp', 1035 'text/LocaleICUTest.cpp',
1035 ], 1036 ],
1036 } 1037 }
1037 ], 1038 ],
1038 ], 1039 ],
1039 }, 1040 },
1040 } 1041 }
OLDNEW
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/platform/credentialmanager/PlatformCredential.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698