browser/components/shell/src/nsGNOMEShellService.h

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/browser/components/shell/src/nsGNOMEShellService.h	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,36 @@
     1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +#ifndef nsgnomeshellservice_h____
    1.10 +#define nsgnomeshellservice_h____
    1.11 +
    1.12 +#include "nsIShellService.h"
    1.13 +#include "nsStringAPI.h"
    1.14 +#include "mozilla/Attributes.h"
    1.15 +
    1.16 +class nsGNOMEShellService MOZ_FINAL : public nsIShellService
    1.17 +{
    1.18 +public:
    1.19 +  nsGNOMEShellService() : mCheckedThisSession(false), mAppIsInPath(false) { }
    1.20 +
    1.21 +  NS_DECL_ISUPPORTS
    1.22 +  NS_DECL_NSISHELLSERVICE
    1.23 +
    1.24 +  nsresult Init() NS_HIDDEN;
    1.25 +
    1.26 +private:
    1.27 +  ~nsGNOMEShellService() {}
    1.28 +
    1.29 +  NS_HIDDEN_(bool) KeyMatchesAppName(const char *aKeyValue) const;
    1.30 +  NS_HIDDEN_(bool) CheckHandlerMatchesAppName(const nsACString& handler) const;
    1.31 +
    1.32 +  NS_HIDDEN_(bool) GetAppPathFromLauncher();
    1.33 +  bool mCheckedThisSession;
    1.34 +  bool mUseLocaleFilenames;
    1.35 +  nsCString    mAppPath;
    1.36 +  bool mAppIsInPath;
    1.37 +};
    1.38 +
    1.39 +#endif // nsgnomeshellservice_h____

mercurial