| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google, Inc. All rights reserved. | 2 * Copyright (C) 2011 Google, Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 init.effectiveDirective = effectiveDirective; | 564 init.effectiveDirective = effectiveDirective; |
| 565 init.originalPolicy = header; | 565 init.originalPolicy = header; |
| 566 init.sourceFile = String(); | 566 init.sourceFile = String(); |
| 567 init.lineNumber = 0; | 567 init.lineNumber = 0; |
| 568 init.columnNumber = 0; | 568 init.columnNumber = 0; |
| 569 init.statusCode = 0; | 569 init.statusCode = 0; |
| 570 | 570 |
| 571 if (!SecurityOrigin::isSecure(document->url()) && document->loader()) | 571 if (!SecurityOrigin::isSecure(document->url()) && document->loader()) |
| 572 init.statusCode = document->loader()->response().httpStatusCode(); | 572 init.statusCode = document->loader()->response().httpStatusCode(); |
| 573 | 573 |
| 574 RefPtr<ScriptCallStack> stack = createScriptCallStack(1, false); | 574 RefPtrWillBeRawPtr<ScriptCallStack> stack = createScriptCallStack(1, false); |
| 575 if (!stack) | 575 if (!stack) |
| 576 return; | 576 return; |
| 577 | 577 |
| 578 const ScriptCallFrame& callFrame = stack->at(0); | 578 const ScriptCallFrame& callFrame = stack->at(0); |
| 579 | 579 |
| 580 if (callFrame.lineNumber()) { | 580 if (callFrame.lineNumber()) { |
| 581 KURL source = KURL(ParsedURLString, callFrame.sourceURL()); | 581 KURL source = KURL(ParsedURLString, callFrame.sourceURL()); |
| 582 init.sourceFile = stripURLForUseInReport(document, source); | 582 init.sourceFile = stripURLForUseInReport(document, source); |
| 583 init.lineNumber = callFrame.lineNumber(); | 583 init.lineNumber = callFrame.lineNumber(); |
| 584 init.columnNumber = callFrame.columnNumber(); | 584 init.columnNumber = callFrame.columnNumber(); |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 // Collisions have no security impact, so we can save space by storing only
the string's hash rather than the whole report. | 777 // Collisions have no security impact, so we can save space by storing only
the string's hash rather than the whole report. |
| 778 return !m_violationReportsSent.contains(report.impl()->hash()); | 778 return !m_violationReportsSent.contains(report.impl()->hash()); |
| 779 } | 779 } |
| 780 | 780 |
| 781 void ContentSecurityPolicy::didSendViolationReport(const String& report) | 781 void ContentSecurityPolicy::didSendViolationReport(const String& report) |
| 782 { | 782 { |
| 783 m_violationReportsSent.add(report.impl()->hash()); | 783 m_violationReportsSent.add(report.impl()->hash()); |
| 784 } | 784 } |
| 785 | 785 |
| 786 } // namespace WebCore | 786 } // namespace WebCore |
| OLD | NEW |