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