netwerk/protocol/device/nsDeviceProtocolHandler.h

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

     1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
     2 /* This Source Code Form is subject to the terms of the Mozilla Public
     3  * License, v. 2.0. If a copy of the MPL was not distributed with this
     4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     6 #ifndef nsDeviceProtocolHandler_h_
     7 #define nsDeviceProtocolHandler_h_
     9 #include "nsIProtocolHandler.h"
    10 #include "mozilla/Attributes.h"
    12 // {6b0ffe9e-d114-486b-aeb7-da62e7273ed5}
    13 #define NS_DEVICEPROTOCOLHANDLER_CID                      \
    14 { 0x60ffe9e, 0xd114, 0x486b,                              \
    15     {0xae, 0xb7, 0xda, 0x62, 0xe7, 0x27, 0x3e, 0xd5} }
    17 class nsDeviceProtocolHandler MOZ_FINAL : public nsIProtocolHandler {
    18 public:
    19   NS_DECL_THREADSAFE_ISUPPORTS
    20   NS_DECL_NSIPROTOCOLHANDLER
    22   nsDeviceProtocolHandler() {}
    23   ~nsDeviceProtocolHandler() {}
    25   nsresult Init();
    26 };
    28 #endif

mercurial