author | Arnaud Sourioux <six.dsn@gmail.com> |
Mon, 22 Sep 2014 15:57:05 -0700 | |
changeset 206604 | 5a12875dfd1ca830a60c7888fda0b8ecc165c48a |
parent 206603 | de9ba02af7a66ff03493d58de550769296329783 |
child 206605 | d8b5efe0c3ddc17beebd1f648f7f0382d3b0aaf8 |
push id | 27533 |
push user | emorley@mozilla.com |
push date | Tue, 23 Sep 2014 13:30:16 +0000 |
treeherder | mozilla-central@11f65f0567c5 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jaws |
bugs | 1010103 |
milestone | 35.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
toolkit/components/parentalcontrols/nsParentalControlsServiceDefault.cpp | file | annotate | diff | comparison | revisions |
--- a/toolkit/components/parentalcontrols/nsParentalControlsServiceDefault.cpp +++ b/toolkit/components/parentalcontrols/nsParentalControlsServiceDefault.cpp @@ -1,21 +1,24 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode:nil; c-basic-offset: 2 -*- */ /* 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/. */ #include "nsParentalControlsService.h" #include "nsString.h" #include "nsIFile.h" +#include "mozilla/unused.h" NS_IMPL_ISUPPORTS(nsParentalControlsService, nsIParentalControlsService) -nsParentalControlsService::nsParentalControlsService() +nsParentalControlsService::nsParentalControlsService() : + mEnabled(false) { + mozilla::unused << mEnabled; } nsParentalControlsService::~nsParentalControlsService() { } NS_IMETHODIMP nsParentalControlsService::GetParentalControlsEnabled(bool *aResult)