mozilla-i586-domPrefs.patch
changeset 1044 142a0c92607c
parent 1040 246b98b59979
child 1045 f645c886d36b
equal deleted inserted replaced
1037:d61b64679bb4 1044:142a0c92607c
       
     1 # HG changeset patch
       
     2 # User Andrea Marchesini <amarchesini@mozilla.com>
       
     3 # Parent  bb4eb640e7303ea68be982d824aa100caacce240
       
     4 Mozilla Bug#1447409 - DOMPrefs.h must be included in WorkerScope, r=qdot
       
     5                       To fix 32bit build error for i586 target.
       
     6 
       
     7 diff --git a/dom/workers/WorkerScope.h b/dom/workers/WorkerScope.h
       
     8 --- a/dom/workers/WorkerScope.h
       
     9 +++ b/dom/workers/WorkerScope.h
       
    10 @@ -4,16 +4,17 @@
       
    11   * License, v. 2.0. If a copy of the MPL was not distributed with this
       
    12   * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
       
    13  
       
    14  #ifndef mozilla_dom_workerscope_h__
       
    15  #define mozilla_dom_workerscope_h__
       
    16  
       
    17  #include "Workers.h"
       
    18  #include "mozilla/DOMEventTargetHelper.h"
       
    19 +#include "mozilla/dom/DOMPrefs.h"
       
    20  #include "mozilla/dom/Headers.h"
       
    21  #include "mozilla/dom/RequestBinding.h"
       
    22  #include "nsWeakReference.h"
       
    23  #include "mozilla/dom/ImageBitmapSource.h"
       
    24  
       
    25  namespace mozilla {
       
    26  namespace dom {
       
    27