diff options
Diffstat (limited to 'dom/security')
-rw-r--r-- | dom/security/SRICheck.cpp | 1 | ||||
-rw-r--r-- | dom/security/SRICheck.h | 1 | ||||
-rw-r--r-- | dom/security/SRILogHelper.h | 1 | ||||
-rw-r--r-- | dom/security/SRIMetadata.cpp | 1 | ||||
-rw-r--r-- | dom/security/SRIMetadata.h | 1 | ||||
-rw-r--r-- | dom/security/nsCSPContext.cpp | 5 | ||||
-rw-r--r-- | dom/security/nsCSPContext.h | 1 | ||||
-rw-r--r-- | dom/security/nsCSPParser.cpp | 1 | ||||
-rw-r--r-- | dom/security/nsCSPParser.h | 1 | ||||
-rw-r--r-- | dom/security/nsCSPService.cpp | 1 | ||||
-rw-r--r-- | dom/security/nsCSPService.h | 1 | ||||
-rw-r--r-- | dom/security/nsCSPUtils.cpp | 1 | ||||
-rw-r--r-- | dom/security/nsCSPUtils.h | 1 | ||||
-rw-r--r-- | dom/security/nsContentSecurityManager.h | 1 | ||||
-rw-r--r-- | dom/security/nsMixedContentBlocker.cpp | 1 | ||||
-rw-r--r-- | dom/security/nsMixedContentBlocker.h | 1 | ||||
-rw-r--r-- | dom/security/test/gtest/TestCSPParser.cpp | 1 |
17 files changed, 2 insertions, 19 deletions
diff --git a/dom/security/SRICheck.cpp b/dom/security/SRICheck.cpp index 534909f81a..7c3f8c7aaf 100644 --- a/dom/security/SRICheck.cpp +++ b/dom/security/SRICheck.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/SRICheck.h b/dom/security/SRICheck.h index 46de0532f1..947fb95417 100644 --- a/dom/security/SRICheck.h +++ b/dom/security/SRICheck.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/SRILogHelper.h b/dom/security/SRILogHelper.h index 90638136df..bbfd46bbf9 100644 --- a/dom/security/SRILogHelper.h +++ b/dom/security/SRILogHelper.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/SRIMetadata.cpp b/dom/security/SRIMetadata.cpp index 801ff04770..f81092704b 100644 --- a/dom/security/SRIMetadata.cpp +++ b/dom/security/SRIMetadata.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/SRIMetadata.h b/dom/security/SRIMetadata.h index 4b6bdb47ad..3802d78c6d 100644 --- a/dom/security/SRIMetadata.h +++ b/dom/security/SRIMetadata.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPContext.cpp b/dom/security/nsCSPContext.cpp index 56a119e1a8..9fd30eed8a 100644 --- a/dom/security/nsCSPContext.cpp +++ b/dom/security/nsCSPContext.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ @@ -773,7 +772,7 @@ StripURIForReporting(nsIURI* aURI, { // 1) If the origin of uri is a globally unique identifier (for example, // aURI has a scheme of data, blob, or filesystem), then return the - // ASCII serialization of uri’s scheme. + // ASCII serialization of uri???s scheme. bool isHttpOrFtp = (NS_SUCCEEDED(aURI->SchemeIs("http", &isHttpOrFtp)) && isHttpOrFtp) || (NS_SUCCEEDED(aURI->SchemeIs("https", &isHttpOrFtp)) && isHttpOrFtp) || @@ -788,7 +787,7 @@ StripURIForReporting(nsIURI* aURI, } // 2) If the origin of uri is not the same as the origin of the protected - // resource, then return the ASCII serialization of uri’s origin. + // resource, then return the ASCII serialization of uri???s origin. if (!NS_SecurityCompareURIs(aSelfURI, aURI, false)) { // cross origin redirects also fall into this category, see: // http://www.w3.org/TR/CSP/#violation-reports diff --git a/dom/security/nsCSPContext.h b/dom/security/nsCSPContext.h index 729f440ce7..3530c74c5c 100644 --- a/dom/security/nsCSPContext.h +++ b/dom/security/nsCSPContext.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPParser.cpp b/dom/security/nsCSPParser.cpp index a0eba69188..12dcb9dc42 100644 --- a/dom/security/nsCSPParser.cpp +++ b/dom/security/nsCSPParser.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPParser.h b/dom/security/nsCSPParser.h index 59f5d2d6d2..03ef2bb41e 100644 --- a/dom/security/nsCSPParser.h +++ b/dom/security/nsCSPParser.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPService.cpp b/dom/security/nsCSPService.cpp index 4807c9aa4a..5e5066b739 100644 --- a/dom/security/nsCSPService.cpp +++ b/dom/security/nsCSPService.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPService.h b/dom/security/nsCSPService.h index 0eb991233c..e9c82d438a 100644 --- a/dom/security/nsCSPService.h +++ b/dom/security/nsCSPService.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPUtils.cpp b/dom/security/nsCSPUtils.cpp index e9f218c145..5f0bac1cd8 100644 --- a/dom/security/nsCSPUtils.cpp +++ b/dom/security/nsCSPUtils.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsCSPUtils.h b/dom/security/nsCSPUtils.h index 91096712a7..84dcbb7fcc 100644 --- a/dom/security/nsCSPUtils.h +++ b/dom/security/nsCSPUtils.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsContentSecurityManager.h b/dom/security/nsContentSecurityManager.h index 750dd88038..0451f643b6 100644 --- a/dom/security/nsContentSecurityManager.h +++ b/dom/security/nsContentSecurityManager.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsMixedContentBlocker.cpp b/dom/security/nsMixedContentBlocker.cpp index 85fb06d8d7..031bc27db7 100644 --- a/dom/security/nsMixedContentBlocker.cpp +++ b/dom/security/nsMixedContentBlocker.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/nsMixedContentBlocker.h b/dom/security/nsMixedContentBlocker.h index 068068b252..6d343fba0b 100644 --- a/dom/security/nsMixedContentBlocker.h +++ b/dom/security/nsMixedContentBlocker.h @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ diff --git a/dom/security/test/gtest/TestCSPParser.cpp b/dom/security/test/gtest/TestCSPParser.cpp index 893e02db5e..7964bf43a3 100644 --- a/dom/security/test/gtest/TestCSPParser.cpp +++ b/dom/security/test/gtest/TestCSPParser.cpp @@ -1,5 +1,4 @@ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ -/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |