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

Side by Side Diff: third_party/WebKit/Source/platform/network/ResourceRequest.cpp

Issue 1746283002: Rename enums/functions that collide in chromium style in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: get-names-13-platform: . Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2009, 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 336
337 if (a.httpMethod() != b.httpMethod()) 337 if (a.httpMethod() != b.httpMethod())
338 return false; 338 return false;
339 339
340 if (a.allowStoredCredentials() != b.allowStoredCredentials()) 340 if (a.allowStoredCredentials() != b.allowStoredCredentials())
341 return false; 341 return false;
342 342
343 if (a.priority() != b.priority()) 343 if (a.priority() != b.priority())
344 return false; 344 return false;
345 345
346 if (a.referrerPolicy() != b.referrerPolicy()) 346 if (a.getReferrerPolicy() != b.getReferrerPolicy())
347 return false; 347 return false;
348 348
349 EncodedFormData* formDataA = a.httpBody(); 349 EncodedFormData* formDataA = a.httpBody();
350 EncodedFormData* formDataB = b.httpBody(); 350 EncodedFormData* formDataB = b.httpBody();
351 351
352 if (!formDataA) 352 if (!formDataA)
353 return !formDataB; 353 return !formDataB;
354 if (!formDataB) 354 if (!formDataB)
355 return !formDataA; 355 return !formDataA;
356 356
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 m_didSetHTTPReferrer = false; 439 m_didSetHTTPReferrer = false;
440 m_checkForBrowserSideNavigation = true; 440 m_checkForBrowserSideNavigation = true;
441 m_uiStartTime = 0; 441 m_uiStartTime = 0;
442 m_originatesFromReservedIPRange = false; 442 m_originatesFromReservedIPRange = false;
443 m_inputPerfMetricReportPolicy = InputToLoadPerfMetricReportPolicy::NoReport; 443 m_inputPerfMetricReportPolicy = InputToLoadPerfMetricReportPolicy::NoReport;
444 m_followedRedirect = false; 444 m_followedRedirect = false;
445 m_requestorOrigin = SecurityOrigin::createUnique(); 445 m_requestorOrigin = SecurityOrigin::createUnique();
446 } 446 }
447 447
448 } // namespace blink 448 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698