1*46c4c49dSIbrahim KanoucheThere are no recognizable license headers in this file. Classifiers matched to SISSL because of standard verbiage. 2*46c4c49dSIbrahim KanoucheEXPECTED:Copyright 3*46c4c49dSIbrahim Kanouche// Copyright (c) 2012 The Chromium Authors. All rights reserved. 4*46c4c49dSIbrahim Kanouche// Use of this source code is governed by a BSD-style license that can be 5*46c4c49dSIbrahim Kanouche// found in the LICENSE file. 6*46c4c49dSIbrahim Kanouche 7*46c4c49dSIbrahim Kanouche// Portions of this code based on Mozilla: 8*46c4c49dSIbrahim Kanouche// (netwerk/cookie/src/nsCookieService.cpp) 9*46c4c49dSIbrahim Kanouche/* ***** BEGIN LICENSE BLOCK ***** 10*46c4c49dSIbrahim Kanouche * Version: MPL 1.1/GPL 2.0/LGPL 2.1 11*46c4c49dSIbrahim Kanouche * 12*46c4c49dSIbrahim Kanouche * The contents of this file are subject to the Mozilla Public License Version 13*46c4c49dSIbrahim Kanouche * 1.1 (the "License"); you may not use this file except in compliance with 14*46c4c49dSIbrahim Kanouche * the License. You may obtain a copy of the License at 15*46c4c49dSIbrahim Kanouche * http://www.mozilla.org/MPL/ 16*46c4c49dSIbrahim Kanouche * 17*46c4c49dSIbrahim Kanouche * Software distributed under the License is distributed on an "AS IS" basis, 18*46c4c49dSIbrahim Kanouche * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 19*46c4c49dSIbrahim Kanouche * for the specific language governing rights and limitations under the 20*46c4c49dSIbrahim Kanouche * License. 21*46c4c49dSIbrahim Kanouche * 22*46c4c49dSIbrahim Kanouche * The Original Code is mozilla.org code. 23*46c4c49dSIbrahim Kanouche * 24*46c4c49dSIbrahim Kanouche * The Initial Developer of the Original Code is 25*46c4c49dSIbrahim Kanouche * Netscape Communications Corporation. 26*46c4c49dSIbrahim Kanouche * Portions created by the Initial Developer are Copyright (C) 2003 27*46c4c49dSIbrahim Kanouche * the Initial Developer. All Rights Reserved. 28*46c4c49dSIbrahim Kanouche * 29*46c4c49dSIbrahim Kanouche * Contributor(s): 30*46c4c49dSIbrahim Kanouche * Daniel Witte ([email protected]) 31*46c4c49dSIbrahim Kanouche * Michiel van Leeuwen ([email protected]) 32*46c4c49dSIbrahim Kanouche * 33*46c4c49dSIbrahim Kanouche * Alternatively, the contents of this file may be used under the terms of 34*46c4c49dSIbrahim Kanouche * either the GNU General Public License Version 2 or later (the "GPL"), or 35*46c4c49dSIbrahim Kanouche * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 36*46c4c49dSIbrahim Kanouche * in which case the provisions of the GPL or the LGPL are applicable instead 37*46c4c49dSIbrahim Kanouche * of those above. If you wish to allow use of your version of this file only 38*46c4c49dSIbrahim Kanouche * under the terms of either the GPL or the LGPL, and not to allow others to 39*46c4c49dSIbrahim Kanouche * use your version of this file under the terms of the MPL, indicate your 40*46c4c49dSIbrahim Kanouche * decision by deleting the provisions above and replace them with the notice 41*46c4c49dSIbrahim Kanouche * and other provisions required by the GPL or the LGPL. If you do not delete 42*46c4c49dSIbrahim Kanouche * the provisions above, a recipient may use your version of this file under 43*46c4c49dSIbrahim Kanouche * the terms of any one of the MPL, the GPL or the LGPL. 44*46c4c49dSIbrahim Kanouche * 45*46c4c49dSIbrahim Kanouche * ***** END LICENSE BLOCK ***** */ 46