2014-05-05 21:30:39 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2005-07-23 18:05:25 +04:00
|
|
|
|
|
|
|
#include "nsVersionComparatorImpl.h"
|
|
|
|
#include "nsVersionComparator.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
|
2014-04-27 11:06:00 +04:00
|
|
|
NS_IMPL_ISUPPORTS(nsVersionComparatorImpl, nsIVersionComparator)
|
2005-07-23 18:05:25 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-08-25 23:17:15 +04:00
|
|
|
nsVersionComparatorImpl::Compare(const nsACString& aStr1,
|
|
|
|
const nsACString& aStr2,
|
2014-05-13 21:41:38 +04:00
|
|
|
int32_t* aResult)
|
2005-07-23 18:05:25 +04:00
|
|
|
{
|
2014-05-13 21:41:38 +04:00
|
|
|
*aResult = mozilla::CompareVersions(PromiseFlatCString(aStr1).get(),
|
|
|
|
PromiseFlatCString(aStr2).get());
|
2005-07-23 18:05:25 +04:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|