Bug 1159495 - Change Windows to Unix line endings in GMPUtils.cpp. r=whitespace

This commit is contained in:
Chris Pearce 2015-05-08 13:36:37 +12:00
Родитель 0689f38a70
Коммит 256c472d27
1 изменённых файлов: 38 добавлений и 38 удалений

Просмотреть файл

@ -1,38 +1,38 @@
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */ /* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public /* 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, * 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/. */ * You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "GMPUtils.h" #include "GMPUtils.h"
#include "nsDirectoryServiceDefs.h" #include "nsDirectoryServiceDefs.h"
#include "nsIFile.h" #include "nsIFile.h"
#include "nsCOMPtr.h" #include "nsCOMPtr.h"
namespace mozilla { namespace mozilla {
bool bool
GetEMEVoucherPath(nsIFile** aPath) GetEMEVoucherPath(nsIFile** aPath)
{ {
nsCOMPtr<nsIFile> path; nsCOMPtr<nsIFile> path;
NS_GetSpecialDirectory(NS_GRE_DIR, getter_AddRefs(path)); NS_GetSpecialDirectory(NS_GRE_DIR, getter_AddRefs(path));
if (!path) { if (!path) {
NS_WARNING("GetEMEVoucherPath can't get NS_GRE_DIR!"); NS_WARNING("GetEMEVoucherPath can't get NS_GRE_DIR!");
return false; return false;
} }
path->AppendNative(NS_LITERAL_CSTRING("voucher.bin")); path->AppendNative(NS_LITERAL_CSTRING("voucher.bin"));
path.forget(aPath); path.forget(aPath);
return true; return true;
} }
bool bool
EMEVoucherFileExists() EMEVoucherFileExists()
{ {
nsCOMPtr<nsIFile> path; nsCOMPtr<nsIFile> path;
bool exists; bool exists;
return GetEMEVoucherPath(getter_AddRefs(path)) && return GetEMEVoucherPath(getter_AddRefs(path)) &&
NS_SUCCEEDED(path->Exists(&exists)) && NS_SUCCEEDED(path->Exists(&exists)) &&
exists; exists;
} }
} // namespace mozilla } // namespace mozilla