Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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