| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |