Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=40: */ |
michael@0 | 3 | /* Copyright 2012 Mozilla Foundation and Mozilla contributors |
michael@0 | 4 | * |
michael@0 | 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
michael@0 | 6 | * you may not use this file except in compliance with the License. |
michael@0 | 7 | * You may obtain a copy of the License at |
michael@0 | 8 | * |
michael@0 | 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
michael@0 | 10 | * |
michael@0 | 11 | * Unless required by applicable law or agreed to in writing, software |
michael@0 | 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
michael@0 | 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
michael@0 | 14 | * See the License for the specific language governing permissions and |
michael@0 | 15 | * limitations under the License. |
michael@0 | 16 | */ |
michael@0 | 17 | |
michael@0 | 18 | #ifndef mozilla_dom_system_b2g_systemworkermanager_h__ |
michael@0 | 19 | #define mozilla_dom_system_b2g_systemworkermanager_h__ |
michael@0 | 20 | |
michael@0 | 21 | #include "nsIInterfaceRequestor.h" |
michael@0 | 22 | #include "nsISystemWorkerManager.h" |
michael@0 | 23 | #include "nsIObserver.h" |
michael@0 | 24 | #include "nsAutoPtr.h" |
michael@0 | 25 | #include "nsCOMPtr.h" |
michael@0 | 26 | #include "nsXULAppAPI.h" // For XRE_GetProcessType |
michael@0 | 27 | |
michael@0 | 28 | class nsIWorkerHolder; |
michael@0 | 29 | |
michael@0 | 30 | namespace mozilla { |
michael@0 | 31 | |
michael@0 | 32 | namespace ipc { |
michael@0 | 33 | class KeyStore; |
michael@0 | 34 | } |
michael@0 | 35 | |
michael@0 | 36 | namespace dom { |
michael@0 | 37 | namespace gonk { |
michael@0 | 38 | |
michael@0 | 39 | class SystemWorkerManager : public nsIObserver, |
michael@0 | 40 | public nsIInterfaceRequestor, |
michael@0 | 41 | public nsISystemWorkerManager |
michael@0 | 42 | { |
michael@0 | 43 | public: |
michael@0 | 44 | NS_DECL_ISUPPORTS |
michael@0 | 45 | NS_DECL_NSIOBSERVER |
michael@0 | 46 | NS_DECL_NSIINTERFACEREQUESTOR |
michael@0 | 47 | NS_DECL_NSISYSTEMWORKERMANAGER |
michael@0 | 48 | |
michael@0 | 49 | nsresult Init(); |
michael@0 | 50 | void Shutdown(); |
michael@0 | 51 | |
michael@0 | 52 | static already_AddRefed<SystemWorkerManager> |
michael@0 | 53 | FactoryCreate(); |
michael@0 | 54 | |
michael@0 | 55 | static nsIInterfaceRequestor* |
michael@0 | 56 | GetInterfaceRequestor(); |
michael@0 | 57 | |
michael@0 | 58 | private: |
michael@0 | 59 | SystemWorkerManager(); |
michael@0 | 60 | ~SystemWorkerManager(); |
michael@0 | 61 | |
michael@0 | 62 | nsresult InitWifi(JSContext *cx); |
michael@0 | 63 | nsresult InitKeyStore(JSContext *cx); |
michael@0 | 64 | |
michael@0 | 65 | nsCOMPtr<nsIWorkerHolder> mWifiWorker; |
michael@0 | 66 | |
michael@0 | 67 | nsRefPtr<ipc::KeyStore> mKeyStore; |
michael@0 | 68 | |
michael@0 | 69 | bool mShutdown; |
michael@0 | 70 | }; |
michael@0 | 71 | |
michael@0 | 72 | } |
michael@0 | 73 | } |
michael@0 | 74 | } |
michael@0 | 75 | |
michael@0 | 76 | #endif // mozilla_dom_system_b2g_systemworkermanager_h__ |