@@ -16,8 +16,6 @@ import {
1616  FirebaseAuthState 
1717}  from  './providers/auth_backend' ; 
1818import  { FirebaseSdkAuthBackend }  from  './providers/firebase_sdk_auth_backend' ; 
19- import  { WebWorkerFirebaseAuth }  from  './providers/web_workers/worker/auth' ; 
20- import  { MessageBasedFirebaseAuth }  from  './providers/web_workers/ui/auth' ; 
2119
2220@Injectable ( ) 
2321export  class  AngularFire  { 
@@ -41,7 +39,7 @@ function getAbsUrl (root:string, url:string) {
4139  return  url ; 
4240} 
4341
44- const  COMMON_PROVIDERS : any [ ]  =  [ 
42+ export   const  COMMON_PROVIDERS : any [ ]  =  [ 
4543  provide ( FirebaseRef ,  { 
4644    useFactory : ( url :string )  =>  new  Firebase ( url ) , 
4745    deps : [ FirebaseUrl ] } ) , 
@@ -57,19 +55,6 @@ export const FIREBASE_PROVIDERS:any[] = [
5755  } ) 
5856] ; 
5957
60- export  const  WORKER_APP_FIREBASE_PROVIDERS : any [ ]  =  [ 
61-   COMMON_PROVIDERS , 
62-   provide ( AuthBackend ,  { useClass : WebWorkerFirebaseAuth } ) 
63- ] ; 
64- 
65- export  const  WORKER_RENDER_FIREBASE_PROVIDERS : any [ ]  =  [ 
66-   COMMON_PROVIDERS , 
67-   provide ( FirebaseSdkAuthBackend ,  { 
68-     useFactory : ( ref : Firebase )  =>  new  FirebaseSdkAuthBackend ( ref ,  true ) , 
69-     deps : [ FirebaseRef ] 
70-   } ) , 
71-   MessageBasedFirebaseAuth 
72- ] ; 
7358/** 
7459 * Used to define the default Firebase root location to be 
7560 * used throughout an application. 
@@ -91,7 +76,6 @@ export {
9176} 
9277
9378export  { FirebaseUrl ,  FirebaseRef ,  FirebaseAuthConfig }  from  './tokens' ; 
94- export  { MessageBasedFirebaseAuth }  from  './providers/web_workers/ui/auth' ; 
9579
9680// Helps Angular-CLI automatically add providers 
9781export  default  { 
0 commit comments